Hello!
int i = 5;
if I write this statement
Console.Writeln ("Test of i = {0}", i);
then I assume that will i be boxed
Is that correct understood of me?
//Tony
int i = 5;
if I write this statement
Console.Writeln ("Test of i = {0}", i);
then I assume that will i be boxed
Is that correct understood of me?
//Tony
Comment