Return to Snippet

Revision: 30783
at August 22, 2010 02:38 by tclancy


Initial Code
class foo
{
    public foo(){}
    public foo(string s ) { }
    public foo (string s1, string s2) : this(s1) {....}

}

Initial URL


Initial Description
I always forget the "this()" syntax.

Initial Title
C#: Call Other Constructor

Initial Tags


Initial Language
C#