int i = 5; object o = i; // Boxing Value ---> Reference (Implicit) int j = (int)o; // UnBoxing Reference ---> value (Explicit) MessageBox.Show(j.ToString());
Post a Comment
No comments:
Post a Comment