Answer Posted / prabhakaran
A derived class can stop virtual inheritance
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
In a site to turn off cookies for one page which method is followed?
What is for loop in c#?
What are the Types of compatabilities and explain them
How many bytes is a long c#?
What is the compiler of c#?
What do you mean by saying a "struct is a value type"?
What are static and dynamic variables?
Why do we need indexers in c#?
What is the difference between int16 and int32 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 arraylist hold primitive types?
What is token in c#?
How do you specify a custom attribute for the entire assembly?
Can you specify nested classes as partial classes?
Can you mark static constructor with access modifiers?