E
Eddie Pazz
While reading that everything in C# is an object, why is it that I can do:
string temp = "";
instead of
string temp = new string("");
Is this just a shortcut the compiler provides?
string temp = "";
instead of
string temp = new string("");
Is this just a shortcut the compiler provides?