Answer Posted / ajay kumar
No, C# does not support multiple inheritance.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Name the connections does microsoft sql server support?
What are accessors?
Describe two uses of the “using” statement during the operation of c#?
Can a sealed class be used as a base class?
What is the use of parse in c#?
Explain the difference between object type and dynamic type variables 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; } }
Define encapsulation?
What is type keyword in c#?
What is static noise?
Can abstract class have private constructor c#?
Enlist some of the properties of a thread class?
What do you mean by “finalize” and “finally” methods in c#?
What is writeline?
What is literal in c#?