Use of Inheritance in C#

Use of Inheritance in C#

07:39  /  Ganesh  /  0 Comments

Why and when to use Inheritance? : One of my friend once asked me a question on inheritance that i will explain below. Consider a class below Class Base {  int A;  string str;  public void test()  {   //Code...  } } Class Derived: Base {  int k; } In above code Derived class inherits Base class with...

Static and Dynamic Polymorphism in c#

Static and Dynamic Polymorphism in c#

04:24  /  Ganesh  /  1 Comments

I hope you have gone through previous post to understand the basics of Object Oriented Concept in c#. If not, you can find it here fundamentals of OOP and Four Pillars of OOP. This post is about one of the four pillars of OOP i.e. polymorphism in Object Oriented Programming that i am gonna explain via C#. If you search the...

Four Pillars of OOP

Four Pillars of OOP

04:20  /  Ganesh  /  0 Comments

We all use OOP languages in daily life but we still find ourselves confused about few important concept of Object-Oriented Programming. So let me put few of those here to clear the air. So the four pillars of OOP that are essential to achieve re-usability, managing complexity, information hiding etc are: Encapsulation Abstraction Polymorphism Inheritance Encapsulation and Abstraction:...

Fundamentals of OOP - Classes and Objects

Fundamentals of OOP - Classes and Objects

01:00  /  Ganesh  /  0 Comments

As the name suggest Object oriented programming is based on "objects" which is nothing but an instance of a class. Class contains fields often called attributes and blocks of code in the form of methods. So we can say object comprises of attributes and methods. In simple word, class is a blueprint for object and defines structure of...