The easiest way to do this is to use RemoteWebDriverone that requires the Selenium server to start. The code would look like this ( Warning: unverified code).
IWebDriver driver = new RemoteWebDriver("http://localhost:4444/wd/hub", DesiredCapabilities.Opera());
source
share