Working with Interfaces
In order to rectify the drawback of multiple inheritance, creators of C# have introduced a new concept called Interfaces. Java programmers may be well aware of this concept.
Categories: C#, Channels Tags: C#, inheritance, interfaces, multiple inheritance
Understanding Inheritance in C#
The relationship between two or more classes is termed as Inheritance in an Object – Oriented Programming language. Normally there will be one class, from which the other classes may derive.
Categories: C#, Channels Tags: abstract class, inheritance, sealed class
Arrays & Inheritance
An Array is a similar data- type with similar values. In Java, arrays can only be of a single type like Integers, Strings, Float, Double and so on.
Categories: Channels, Java Tags: arrays, inheritance, Java

