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
What is instantiating a class in c#?
Is there an equivalent of exit() for quitting a c# .net application?
What is thread and explain states of a thread in c#?
What is append in c#?
Can you create sealed abstract class in c#?
What is routing in c#?
What is command object in c#?
What are the basic string operations? Explain.
Give some examples of commonly used i/o classes?
Explain how to use an extender provider in the project.
What is c# in asp net?
What is global namespace in c#?
What is different between Boxing and Unboxing?
Can a method return multiple values in c#?
What is web forms in c#?