Home »

What is the syntax to inherit from a class in C#?

Question ListCategory: C#.NETWhat is the syntax to inherit from a class in C#?
jessica537 author asked 9 years ago
1 Answers
shah_kajal184 author answered 8 years ago

Place a colon and then the name of the base class. Example: class MyNewClass : MyBaseClass

Please login or Register to Submit Answer