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 asynccallback c#?
What is threading in c# with example?
What is use of hashtable in c#?
Describe a Struct ?
Explain Direct CAST vs CType ?
What is reflection in c#?
Why constructor is used in c#?
What are virtual classes in c#?
What is a method c#?
Is it possible to have a static indexer in c#?
how to prevent a class from being inherited in c#.net?
Is array reference type in c#?
What is data binding c#?
What are delegates?
Overloaded constructor will call default constructor internally?