What does the keyword virtual mean in the method definition?
Answer Posted / venu gopal
The method can be over-ridden.
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
Howmany five tracing levels in System.Diagnostics.TraceSwitcher? Why they are using?
What is integer c#?
What is addressof operator?
What is desktop GUI application?
Major difference between Basic httpbinding and WShttpbinding?
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 thread and explain states of a thread in c#?
What are the extension methods in c#?
List out the differences between array and arraylist in c#?
What is a strong name in c#?
Is c sharp free?
What is xslt in c#?
What is called method in c#?
What is the difference between decimal and integer?
What is the execution entry point for a c# console application?