I've been learning a little C# lately and I'm pretty excited about it. I was thinking we should probably turn the Visual Basic forum into a .NET forum.
I wanted post this because I know it could come in handy for lots of other programming. Notice what should be escaped in the following code:
Code:
string var = @"C:\WINDOWS";
That code is perfectly valid in c# because the '@' sign supresses escape chars. =)
Is there anything like that for c++?