csharp use cefcharp and selenium can?

Code Example - csharp use cefcharp and selenium can?

                
                        var service = ChromeDriverService.CreateDefaultService(@"C:\chromedriver");
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.AddArgument("--remote-debugging-port=1234");
chromeOptions.BinaryLocation = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe";
IWebDriver driver = new ChromeDriver(service, chromeOptions); 
driver.Navigate().GoToUrl("http://www.google.com.com");
driver.Quit();