Can you store multiple data types in System.Array?
Answer Posted / michael
No you can't ArrayList stores object. So if you use something like this
ArrayList arr = new ArrayList();
arr.Add(56);
arr.Add("ASDf");
you are still storing objects, 56 is object, ASDf is an object
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is check/uncheck?
What is hashtable in c# with example?
Can we make a Static Constructor Parameterized? Give Reason with your answer
What is the difference between c and c# programming?
What happens when thread sleep () method is called?
What is ienumerator c#?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
What is reference types in c#?
What is difference between function and method in c#?
What is the execution entry point for a c# console application?
What does clr stand for?
Write a program in c# to find the angle between the hours and minutes in a clock?
What is jit (just in time)?
What is float in unity?
What does immutable mean in c#?