implicit boxing of an int
using System;
class MainClass {
public static void Main() {
int myInt1 = 10;
Console.WriteLine("myInt1.ToString() = " + myInt1.ToString());
Console.WriteLine("myInt1.GetType() = " + myInt1.GetType());
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
|