C# Constructor Inheritance - This is how it works

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024

Комментарии • 8

  • @tutorialsEUC
    @tutorialsEUC  Год назад +2

    🚀 C# Progress Academy - Become a job-ready C# and Angular web developer to land your dream developer role: bit.ly/45vbPUg

  • @ManishBhusal
    @ManishBhusal Месяц назад

    this is the best explanation, thank you

  • @brianwere4495
    @brianwere4495 Год назад +2

    short and clear. Nice on my boy

  • @BrisbaneStomp
    @BrisbaneStomp 7 месяцев назад

    Is it just me or the code is multiplying the same code in order to reduce writing the same code… it might be a tad different but it’s still writing the same general code over and over. Not your fault, I think it’s an issue with c#

  • @غصنالزيتون-ف7ز
    @غصنالزيتون-ف7ز 7 месяцев назад

    Excessive talk is not the explanation and it is not the explanation
    You talk too much = losing the basic meaning

  • @mmisterWhite
    @mmisterWhite Год назад

    But how do you now make a list of Persons in which you can store multiple sub classes like Employee and Manager? I am unable to make it work and there are no clear examples of it online

  • @199772AVVI
    @199772AVVI Год назад

    I have two things to mention, first is that the base (inherited) ctor always runs first and there is no way around that! The second thing, you can also inherit ctors from current class (this), to do that, in the ctor instead of inheriting base ( : base()) you inherit this ( : this()).