Sealed is a keyword used to restrict inheritance future of programing language. When you mark any class to be sealed then you cannot mak...
![How to use sealed keyword in .Net?](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimIno-NO7mlcWsdAkwhuZ5x8zylkSHUlTTk89F0_HZ0VqDqrXQouKtIsqNMAm8zklMn4sCsfKEBJ5ysSfHvO_XU9q2vIjPGWsusTsYltj33jFmVQ8dPDd9I7HK77BSe_4hCtBcSBHY-cs/s72-c/seald.png)
Sealed is a keyword used to restrict inheritance future of programing language. When you mark any class to be sealed then you cannot mak...
Static is keyword. You can declare variable, method and class to be static, when you declare variable to be static then it is shares among...
implementation inheritance Interface inheritance. When any class is derived from any other base clas...
The key word interface is use to define an interface. When you define interface you have not to define access modifier of any function (m...
Polymorphism means to act as differently in different situation.it has wto type 1. Methode overloading(satatic poly. Or compiletim...
In method overriding there is parent class has a method(function) with virtual keyword and this method is overridden in child class.as s...
Method overloading means same mehtod name and same return type but number of parameter is defferant ,sequence of parameter may be also de...
• Inheritance is main concept of OOP it show the parent child relationship between classes • Inheritance is process in which one c...