What is superclass in C#
Loading
What is superclass in C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Brahma Prakash ShuklaPosted Oct 19, 2022, 11:40 AM
The class whose features are inherited is known as super class(or a base class or a parent class). Sub Class: The class that inherits the other class is known as subclass(or a derived class, extended class, or child class).
Rajanikant HawaldarPosted Oct 13, 2022, 8:39 AM
In C# base class, parent class context is used, superclass context is used in java.
Sam HobbsPosted Oct 13, 2022, 6:31 AM
Do you have an example of where the term superclass is used in the context of C#? I think it is not an official term. It might refer to a class's base class but if so then the term base class would be the official term.
Amit MohantyPosted Oct 13, 2022, 4:51 AM
A superclass is the class from which many subclasses can be derived. The subclasses inherit the characteristics of a superclass. The superclass is also known as the parent class or base class.