Hello
I have seen the following method syntax and I am trying to understand how this works/or doesn't:
public class MyClass
{
public MyClass();
public MyClass(string param);
}
There is no implementation of the methods (constructors) and class is not declared virtual either...
Is this something new in C# 3.0 ???
Any ideas???
Thank you