Can you store multiple data types in System.Array?

Answer Posted / vishal

Ok, so here is the catch:

An array of objects can store different datatype members -
object[] ar = new object[3];
ar[0] = "test";
ar[1] = 56;

An arraylist can also be used for this purpose -
ArrayList arr = new ArrayList();
arr.Add(56);
arr.Add("ASDf");

And a generic list too can be used for this purpose -
List<object> llst1 = new List<object>();
llst1.Add(56);
llst1.Add("ASDf");

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is instantiating a class in c#?

668


Is there an equivalent of exit() for quitting a c# .net application?

703


What is thread and explain states of a thread in c#?

641


What is append in c#?

633


Can you create sealed abstract class in c#?

642


What is routing in c#?

629


What is command object in c#?

687


What are the basic string operations? Explain.

705


Give some examples of commonly used i/o classes?

672


Explain how to use an extender provider in the project.

688


What is c# in asp net?

646


What is global namespace in c#?

685


What is different between Boxing and Unboxing?

761


Can a method return multiple values in c#?

604


What is web forms in c#?

665