Can you store multiple data types in System.Array?
2651
25-Oct-2010
Pushpendra Singh
30-Oct-2010But if you have an object array then you can
Pushpendra Singh
30-Oct-2010type in an array.
object[] obj = new object[4];
obj[0]=1;
obj[1]="Neeraj";
obj[2]=true;
obj[3]=System.DateTime.Now;