Difference between Interface and Abstract Class
Interface and abstract class are almost same. That’s why we may confused. But they are not same, have some difference. This article explains the difference between abstract and interface. Summary …
tutorials | source code | tips & tricks
Interface and abstract class are almost same. That’s why we may confused. But they are not same, have some difference. This article explains the difference between abstract and interface. Summary …
Abstract class is used to obtain the common characteristics of subclasses. It’s contain complete and abstract (incomplete) both types of member and it cannot be instantiated. This article describes the …
OOP is the greatest programming structure. It help us to reuse same code in multiple place which reduce code redundancy. At present we can’t imagine software development without OOP. Here …
Using overloading and overriding, we can get the concept of polymorphism. Polymorphism means one entity, multiple forms. By using one name, we can perform multiple of actions in multiple place. …
This article describes about the modifiers used in C# programming language. Summary of the article: What is Modifiers? Modifiersin C# What is Modifiers?In programming language modifiers are used to modify …
This article describes about access modifiers in OOP or C# access modifiers. Summary of the article: Access Modifiers Why we should use Access Modifiers? Types of Access Modifiers Default Access …
In OOP class is one of the important elements. This article describes basic overview of class or how to use a class in C#. Summary of the article: What is …
ConstructorConstructor is a member function and its name is as like as class name. It is used to initialize the class object. Constructor & Destructor both are necessary for …
OOP is one kind of programming style. This article describes basic overview of OOP. Summary of the article: What is OOP? What are the basic features of OOP? What is …