Can you store multiple data types in System.Array?
Answer Posted / srivathsan
i guess you cannot do that in a list too. because an array
list is also type safe.
eg:
List<int> arraylist = new List<int>();
the arraylist can contain only integer items.You cannot
store an item that is not an integer type in the arraylist.
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
how dot net compiled code will become platform independent?
What is ienumerable and iqueryable?
What does void mean in c#?
Where value types are stored in c#?
What is whitespace in c#?
Can you explicitly call a destructor?
In which order the constructor is called for an inherited class?
What is assembly manifest?
What is the difference between values and reference types?
What is monitor in C#?
What is the data encapsulation?
How many digits is a 32 bit number?
What is ac callback?
Why singleton class is sealed?
What is a factory in c#?