|
by skeet via Jon Skeet: Coding Blog on 7/25/2010 8:58:03 PM
Yesterday I tweeted a link to an article about overloading that I'd just finished. In that article, all my examples look a bit like this: using System; class Test { static void Foo(int x, int y = 5) { Console.WriteLine("Foo(int x, int y = 5)"); } static void Foo(double x) {
... [ read more ]
|