8 C# technical questions you need to know for an interview

Поділитися
Вставка
  • Опубліковано 15 вер 2024

КОМЕНТАРІ • 4

  • @10Totti
    @10Totti 4 місяці тому

    Great Video!

  • @trustingod0
    @trustingod0 4 місяці тому

    Great video. I’ve always wondered What is meant by contract.Is that an architectural concept or what determines a contract between classes. Could you cover multiple inheritance

    • @RoundTheCode
      @RoundTheCode  4 місяці тому +2

      Thanks. You can't do multiple inheritance in C# as you can see at 5:51. The only "close" way you can do it is to do multi-level inheritance, where one class inherits a another class, and that class inherits another class.