Answered Questions

  • How different are interface and abstract class in .Net?

    nehal

    • Mar 27th, 2007

    1. Abstract class can have method with implementation, interface can only have method definitions2. You can inherit multiple interface but cannot inherit multiple abstract class

    Purushotam

    • Jan 6th, 2007

    Interface provides no implementation but only contract, where as abstract can provide implementation and contract both.