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


Please Help Members By Posting Answers For Below Questions

What do you understand by an Implicit Variable?

717


Which is the best language for desktop application?

640


What is cts, clr?

597


What are callback methods in c#?

680


What is generic method in c#?

661


What is global namespace in c#?

687


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; } }

3769


Can we make a Static Constructor Parameterized? Give Reason with your answer

751


Can we inherit partial class in c#?

662


Why do we use constructors in c#?

775


What are the different types of delegates?

670


What are the types of class in c#?

689


What exactly is serverless?

589


What are the desktop applications?

634


Is string null or empty?

681