Can you store multiple data types in System.Array?
Ask by Pushpendra Singh
Updated 23 Sep 2020
But if you have an object array then you can
type in an array.
object[] obj = new object[4];
obj[0]=1;
obj[1]="Neeraj";
obj[2]=true;
obj[3]=System.DateTime.Now;