While assigning data types when we have large bulk of data we select the data type accordingly.
If our integer value have data that is out of range hence we will store it in another data type called object and that process is also called as boxing.
Ex: int a = 6;
unsigned int b;
int c;
b = (unsigned int)a;
c = (int)b;
The other process is to assign it using unassigned datatype that contains only positive values.
Ex : int i = 10;
object o = i;
System.Console.WriteLine(o.ToString());
0 Comment(s)