interface a
{
Method1()
Method2()
}
class b: a
{
override Method1()
override Method2()
}
what will happen & why?
Answer Posted / sandeep joshi
without virtual keyword
cant override method
its error at compile time .....
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the difference between as and is operators in c#?
What is the use of console readkey in c#?
Explain the difference between .net and c#?
What does firstordefault mean in c#?
Can we call server-side code (c# or vb.net code) from javascript?
What does protected internal access modifier mean?
Why do we use namespace in c#?
What is system console writeline in c#?
Is array value type in c#?
What is difference between sleep () and wait ()?
What does || mean in programming?
How does aspect oriented programming work?
What is the namespcae generally given to the webpage of the .NET Framework ?
Tell me the difference between call by value and call by reference.
What is the difference between out and ref in c#?