Search code examples
c#.netbrowsertor-browser-bundle

how to open Tor browser tab using .net c#


I have installed the Tor browser on my PC(Window 10). Now I want to open a link in Tor browser with C#, how can I do this?


Solution

  • Should be simple like opening any other browser

    Process.Start("[Full Path Here] tor.exe", "http://www.YourUrl.com");