Showing posts with label Abstract Class vs Interface. Show all posts
Showing posts with label Abstract Class vs Interface. Show all posts

Monday, 23 May 2016

Abstract Class vs interface in Csharp

Abstract Class Abstract Class is a class that is used as a base class and contains common methods that can be defined by class that inherits from this Base Class .  We can only inherit abstract class But We cannot instantiate Abstract Class . Abstrac classes contains both incomplete & complete methods . Means it can contains functions with definitions as well as abstract...