I am used to doing this in C++. Is this not allowed in C#?
BasicCtor(int a)
{
return BasicCtor(a, "defaultStringValue");
}
BasicCtor(int a, string b)
{
//blah blah
}
In C# I can neither return a calling of the constructor or call it w/o a return. Does C# allow what I want to do? :P