Submitted Questions

  • Reference variable of Interface

    It is possible to create the reference variable of an Interface which is 100% abstract in nature.Then why it is not possible to create a reference of an Abstract class?

    ViBi

    • Apr 19th, 2015

    It is possible "c# class Program { static void Main(string[] args) { MyBase b = new Derived(); Hocky h = new Hocky(); ...

    arupc

    • Feb 8th, 2015

    This is the limitation of Abstract Keyword in C#.