Why multiple Inheritence is not used in C#?
Answer Posted / a b
Sorry just a correction in 5 above, please read the last
line as 'Instead, an implementing class needs to provide
code for each and every method defined in an interface.'
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is multithreading? What are the problems that comes with multithreading and how to manage them?
What is event sourcing in c#?
Define c# i/o classes? List the commonly used classes?
What is the namespace for datatable in c#?
What is before string 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 list collection in c#?
Define boxing and unboxing in c#?
What is cosole application?
Can I fly with a loop recorder?
What is difference between variable and property in c#?
Why to use “using” in c#?
Is null == null c#?
In languages without exception-handling facilities, we could send an error-handling procedure as a parameter to each procedure that can detect errors that must be handled. What disadvantages are there to this method?
Why is it efficient to use System.string under System.Text.StringBuilder ?