Browsing Posts published in February, 2007

NUnit, MbUnit, or VSTSUnit (aka MSTest.exe) have similar syntax, which makes it easy to switch between one framework and another. Switching from NUnit to MbUnit is as simple as replacing: using NUnit.Framework; with: using MbUnit.Framework; Switching the other way is just as easy as long as you haven’t used any MbUnit-specific features such as RowTest. […]

I know C# quite well and thought I knew all the language features, both old, new, and forthcoming. Today I was completely surprised when I discovered a feature that has existed since C# 1.0 that I never knew about… String literals in C# can span multiple source lines! My voyage to discovery started when reading […]