C# 3.0
Posted Thursday February 1, 2007, 11:12 am, Over one day oldC# 3.0 new language features ; Maybe I’m just sheltered, but some of the new features of C# 3.0 look insanely cool. public static class IntExtensions { public static void PrintPlusOne(this int x) { Console.WriteLine(x + 1); } } int foo = 0; foo.PrintPlusOne();
This post digest is 27% of the original post size.