How to store different types in Array?

If you want to store different kind in single array then you have to create array of object then you can store different type element in single array.
object [] obj=new object[3];

Comments