M
Mark
Is int to Int32 as string is to String?
If that's the case, then the following is logically equivalent:
//equivalent
int MyInt = 5000;
Int32 MyInt2 = 5000;
//equivalent
string MyString = "slick";
String MyString2 = "slick";
Correct? Is int then essentially an alias for Int32?
Thanks in advance.
Mark
If that's the case, then the following is logically equivalent:
//equivalent
int MyInt = 5000;
Int32 MyInt2 = 5000;
//equivalent
string MyString = "slick";
String MyString2 = "slick";
Correct? Is int then essentially an alias for Int32?
Thanks in advance.
Mark