What?s the top .NET class that everything is derived from?
Answer Posted / pompana gouda
System.Object
This is the base object from which all other classes are
derived.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the difference between constant and readonly in c#?
Will the following code compile and run?
What is the difference between “constant” and “readonly” variables in c#?
What is callback function in c#?
What is a sealed class?
Which constructor is called first in c#?
What is different between Boxing and Unboxing?
Define multicast delegate? How it be used?
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; } }
How many constructors can a class have in c#?
What is private static in c#?
Which is faster iqueryable or ienumerable?
Can you put two constructor with the same structure in a class?
Explain about generics in c#.net?
Why data types are important?