How do you create multiple inheritance in C#?
Answer Posted / jiten
if u want to crate multile inheritance in C#
u can use intface
Is This Answer Correct ? | 98 Yes | 10 No |
Post New Answer View All Answers
What do you understand by an Implicit Variable?
Which is the best language for desktop application?
What is cts, clr?
What are callback methods in c#?
What is generic method in c#?
What is global namespace 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; } }
Can we make a Static Constructor Parameterized? Give Reason with your answer
Can we inherit partial class in c#?
Why do we use constructors in c#?
What are the different types of delegates?
What are the types of class in c#?
What exactly is serverless?
What are the desktop applications?
Is string null or empty?