One of my favorite additions to the .NET framework in 2.0 is the wonderful String.IsNullOrEmpty method. In the old 1.1 days we'd often times end up with code that looks something like this: public string DoSomeSuperCoolStringThing(string myString) { if(myString != null && myString.Length > 0) { // the good stuff
Similar Posts
Last Friday while out on the ARCast Down Under Tour in Perth Australia someone came up to me with a question about sharing code between the client and
Okay, so here's the code of the C# Quiz presented a couple of days ago using System;public abstract class Foo{ static Foo() { Console.WriteLine( .cctor
Often times while I'm pairing I get strange looks for using new C# language features that aren't common knowledge yet. I'm cool like that. Or not. Anyway
Rather than spending a lot of time on explaining the details of the garbage collector, I'll refer you to Maoni's blog for some very interesting reading