Answer Posted / ramesh
SuperClass is a Base Class for an derived class
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
What do you mean by directing?
Can we have static indexer in c#?
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 the difference between throw and throw ex?
What is difference between continue and break in c#?
What are the different types of constructors?
For methods inside the interface why can’t you specify the accessibility modifier?
What are the types of serialization?
Can a constructor be private in c#?
Is typeof c#?
What is difference between new and override in c#?
How big is int16?
Why do we need properties in c#?
What is the difference between private and protected in c#?
What does || mean in programming?