Can you store multiple data types in System.Array?
Answer Posted / srikar
No
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain 'structure padding'?
Are multiple data types stored in System.Array?
What does console mean c#?
How to put assembly in gac?
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; } }
In .Net, what is an assembly? Also explain the type of assembly.
Is it possible to restrict the scope of a field/method of a class to the classes in the same namespace?
Which debugging tools you can use in the .NET ssSDK?
What is the major difference between a custom control and user control?
What is the value which is accepted by all data types ?
What is disconnected data architecture in c#?
Explain About disco and uddi
What is ienumerable t in c#?
What is public, private, protected, internal and internal protected?
What is data bind in c#?