1
Reply

What is virtual class in C#?

Rohan  Rathore

Rohan Rathore

11y
1.4k
0
Reply

    There is no such thing in C# - and it's really not necessary since multiple implementation inheritance is not supported. Making a class abstract really only means that you cannot create instances of that class and they might not be fully implemented (e.g. might contain abstract methods).