The Selenium2 WebDriver has some exciting features compared to Selenium 1. You can find more details on the Selenium offical blog release blog about Selenium2!
1. New WebDriver APIs for Python, Ruby, Java and C#, PHP, Perl, WebkitDriver.
2. Fast (no need to run RC server anymore), stable and a lot of bug fixes.
3. IE(6-9)/Firefox(3,4,5,6,7)/Chrome/Opera support
More…
You can download the dotnet webdriver API from:
http://code.google.com/p/selenium/downloads/list
If you are using InternetExploreDriver, you need to modify some security settings, which you can find out more from this wiki page.
On IE 7 or higher on Windows Vista or Windows 7, you must set the Protected Mode settings for each zone to be the same value. The value can be on or off, as long as it is the same for every zone. To set the Protected Mode settings, choose “Internet Options…” from the Tools menu, and click on the Security tab. For each zone, there will be a check box at the bottom of the tab labeled “Enable Protected Mode”.
The browser zoom level must be set to 100% so that the native mouse events can be set to the correct coordinates.
I have created a really basic C# library project when playing with selenium2 webdriver, you can download it from: Selenium2Sample
For migrating from Selenium1 to Selenium2, you can take a look at:
http://seleniumhq.org/docs/appendix_migrating_from_rc_to_webdriver.html#migrating-to-webdriver-reference
There are some links below that I found quite helpful along the way.
http://seleniumhq.org/docs/03_webdriver.html
http://seleniumhq.org/docs/04_webdriver_advanced.html
http://code.google.com/p/selenium/wiki/GettingStarted
http://code.google.com/p/selenium/wiki/NextSteps
http://code.google.com/p/selenium/wiki/InternetExplorerDriver
http://code.google.com/p/selenium/wiki/ArchitecturalOverview
http://java.dzone.com/articles/selenium-2web-driver-land
http://code.google.com/p/design-of-selenium-tests-for-asp-net/
http://seleniumexamples.com/blog/tag/selenium-2/