Answer:
No, If the System.Array is of Some Particular Data Type.(Primitive Data Type)
yes, If the System.Array is of Object Type.
Ex :
create an array of objects.
int in = 50;
string st = "Fifty";
object [] obj = new object[2];
obj[0] = in;
obj[1] = st;
Asked In: Many Interviews |
Alert Moderator