Properties in C# Part-3 | C#.NET Tutorial

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

КОМЕНТАРІ • 28

  • @SanthoshKumarsdh
    @SanthoshKumarsdh 8 років тому +9

    I love the way of teaching of Bangarraju sir...

  • @warishafatima8482
    @warishafatima8482 3 роки тому +2

    I was never comfortable with using enum. This video solved alot of doubts that i had. Thankyou so much sir.

  • @npandiya
    @npandiya 2 роки тому +1

    Very Good Style Study BangarRaju❤

  • @rohittiwari7019
    @rohittiwari7019 4 роки тому +2

    Everyone is fan of ur way to teaching

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

    Thanks for your Clear Explanation

  • @deepbpatel2183
    @deepbpatel2183 2 роки тому +1

    Thank you Mr. Bangar Raju ji.

  • @gouravkumarshaw417
    @gouravkumarshaw417 Рік тому +1

    enum ->value type, structure-> value, class-> reference type

  • @raziahmad2376
    @raziahmad2376 4 роки тому +1

    Great 👍👍👍

  • @anandaag8713
    @anandaag8713 Рік тому

    Very easy to understand the concepts, Thank you Sir for all the videos :)

  • @dattatreyapujar4068
    @dattatreyapujar4068 11 місяців тому

    Thank you sir :) You are best

  • @gouravkumarshaw417
    @gouravkumarshaw417 Рік тому +1

    protected means only accessible to child class

  • @AD-ng4mz
    @AD-ng4mz 8 років тому

    Thank you Sir. Very nice tutorial.

  • @fzab7869
    @fzab7869 6 років тому

    Nice way of teaching ....

  • @top5things968
    @top5things968 2 роки тому +1

    THANK YOU SIR .

  • @jmuziks9688
    @jmuziks9688 Рік тому

    Salamat po! (Thankyou sir!)

  • @monlumbre2861
    @monlumbre2861 6 років тому

    Thank you Sir for Clear Explanation 😇😇😇

  • @abhijeetshah9704
    @abhijeetshah9704 4 роки тому +1

    Sir, how to read the enum value from console, and set into the city property?, being a developer we set the value inside the program. But, how do end user do set the city value defined in enum.
    Thank you for the clearity sir.

  • @Gajanan19
    @Gajanan19 7 років тому

    Sir, You are awesome

  • @tylerdurden5532
    @tylerdurden5532 6 років тому

    Thank you Very Much

  • @NitinJenwal
    @NitinJenwal 6 років тому

    Superb Explanation Sir, Could you plz upload videos for ASP.Net MVC and Xamarine Visual Studio. Thank you :)

  • @shahzebhashmi2648
    @shahzebhashmi2648 4 роки тому

    sir how to apply condition on set for an automatic property?

  • @kamalam29
    @kamalam29 Рік тому

    isn't then Automatic Property would be highly equivelent to Constant?

  • @nithyasanthoshininalmas2953
    @nithyasanthoshininalmas2953 7 років тому

    thanks a lot for the clarity....:-):-)

  • @narayanmuduli3186
    @narayanmuduli3186 7 років тому

    Thank u sir

  • @achin4140
    @achin4140 8 років тому

    sir please upload videos for Enterprise Java beans EJB Entity java beans please i beg you

  • @khandakerzoadpial453
    @khandakerzoadpial453 5 років тому

    Sir I have a question.
    public Customer(int Custid,bool Status,string Cname,double Balance,Cities City)
    {
    this._Custid = Custid;
    this._Status = Status;
    this._Cname = Cname;
    this._Balance = Balance;
    this._City = City;

    }
    I used this.field under constructor.Is any problem if I do so?
    You used like-- _Cuistid=Custid .
    Is there any difference Sir?

  • @நாகூர்காதர்ஷா

    shall we check the condition with Status property in City property as like if (Status = true) instead of if (_Status = true) .
    Is this correct?

    • @khandakerzoadpial453
      @khandakerzoadpial453 5 років тому

      Brother , Status is a local variable of your constructor ,whereas _Status is not.Even if you Status ,it works .But I think it's better to use _Status.