J
Jeff
Hey
I'm wondering what the outcome of this is C# code really is:
int i = new System.Int32();
Which one of these scenarios below describe what the outcome is:
#1: A new reference type instance of i set to zero
#2: An uninitialized i variable
#3: An initialized i variable set to zero
I originally thought #3 is the outcome, but i'm not sure any longer
Any suggestions?
Jeff
I'm wondering what the outcome of this is C# code really is:
int i = new System.Int32();
Which one of these scenarios below describe what the outcome is:
#1: A new reference type instance of i set to zero
#2: An uninitialized i variable
#3: An initialized i variable set to zero
I originally thought #3 is the outcome, but i'm not sure any longer
Any suggestions?
Jeff