Can you store multiple data types in System.Array?
Answer Posted / rakesh
Storing multiple data types in System.Array is not
possible,if u want to store multiple data type means use
ArrayList.It is auto expandable too
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is reference types in c#?
Can we override main method in c#?
Explain the difference between user control and custom control. Also, explain their use.
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is reference c#?
What do you mean by delegates and explain different types of delegates?
How many bytes is a char c#?
How does insertion sort work?
Enlist all the components of an ado.net framework?
Explain the difference between abstract class and interface in .net?
How can I use .NET components from COM programs?
What is an escape sequence?
Explain the importance and use of each, version, culture and publickeytoken for an assembly.
What is the difference between method overriding and method overloading?
How to generate strong name key file or which command is used to generated strong name key file?