Hello! I have Linux. In Monodevelop, I made a project using Selenium (C # / chromedriver). Everything works for me, I decided to check this program on Windows. I assembled the package, launched it on Windows - the program crashed. The error was this: 
I have two questions:
1) How to fix it?
2) And how to make a build for Windows?
Here is a sample code:
IWebDriver driver = null; var chromeOptions = new ChromeOptions (); if (proxyEnable) { var proxy = new Proxy (); proxy.HttpProxy = proxyList [random.Next (0, numOfProxies)]; chromeOptions.Proxy = proxy; } if (numOfUserAgents > 0) chromeOptions.AddArgument ("--user-agent=" + userAgentList [random.Next (0, numOfUserAgents)]); driver = new ChromeDriver (path, chromeOptions);
Surf()andMain()methods. - BlackWitcherOpenQA.Selenium.Chrome.ChromeOptionsit initially swears at theOpenQA.Selenium.Chrome.ChromeOptionstype, probably it is in it, and theSurf()andMain()methods are methods where this type is somehow involved. Maybe there is somewhere in Selenium itself an indication of the correct version of WebDriver? - BlackWitcher