Submitted Questions

  • Why multiple Inheritance is not possible in C#?

    (Please do not answer like this-It is possible through Interfaces.)

    Anujan

    • Dec 30th, 2015

    I think that ambiguity can be easily overridden by using the class name as a prefix before the method. The same as we do as in case we want to implement a method with the same name as in the case of i...

    Riki

    • Sep 1st, 2015

    C# does not allow multiple inheritance because of ambiguity. Say class A has a property "name" which is inherited by class X and Y now we have another class B which is inheriting both X and Y. Here is...

  • Why strings are immutable?

    Jeevan

    • Apr 20th, 2012

    People, please read the question before answering, don't just answer "Why" is the question - not "how".