List T and Collections of Data [Pt 12] | C# for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ก.ย. 2024

ความคิดเห็น • 19

  • @Cartaloop
    @Cartaloop 10 หลายเดือนก่อน +32

    Honestly, all the documentation of c# (includind text document, Microsoft Learn courses and now those videos) was the best documentation I ever seen in my journey of learning how to programming... As a beginner who are not a native (I'm from Brazil, and my english is not so good), I can say: C# is the way!

    • @pedroandrade5069
      @pedroandrade5069 8 หลายเดือนก่อน +1

      E aí man, dois meses depois de começar o curso, tá evoluindo? O que achou?

    • @Cartaloop
      @Cartaloop 8 หลายเดือนก่อน

      @@pedroandrade5069 então, eu acompanho o Microsoft Learn simultaneamente a outros cursos que faço de .NET, mas vale muito a pena você ler a documentação e fazer os cursos do Learn

    • @EnriqueRomero-b7x
      @EnriqueRomero-b7x 6 หลายเดือนก่อน +1

      Estoy de acuerdo!

  • @iam.damian
    @iam.damian 9 หลายเดือนก่อน +3

    As a Damia, my name is very rare. I am glad that it is used as an example :) 10:11

  • @z-buffer1273
    @z-buffer1273 2 หลายเดือนก่อน +3

    "google with bing" lmao
    great series! :)

  • @wusswuzz5818
    @wusswuzz5818 10 หลายเดือนก่อน +3

    Will

    • @jessedv5915
      @jessedv5915 หลายเดือนก่อน

      Za One Piece...

  • @luckoor
    @luckoor 5 หลายเดือนก่อน

    In case of var for better readability i stay with explicit types :)

  • @mustafayassermansour
    @mustafayassermansour หลายเดือนก่อน +2

    1:08 " google with bing " haha 😂😂

  • @kvelez
    @kvelez 29 วันที่ผ่านมา

    var names = new string[] { "apple", "banana", "orange" };
    var numbers = new int[] { 1, 2, 3 };
    var items = new List { "apple", "banana", "orange" };
    var elements = new List { 1, 2, 3 };
    var dict = new Dictionary { { 1, "apple" }, { 2, "banana" }, { 3, "orange" } };
    Console.WriteLine(names[0]);
    Console.WriteLine(numbers[0]);
    Console.WriteLine(items[0]);
    Console.WriteLine(elements[0]);
    Console.WriteLine(dict[1]);

  • @janpoonthong
    @janpoonthong หลายเดือนก่อน +1

    Best two guys are the best in teaching, I love this format of teaching, where two people kinda pair programming and ask question

  • @NdamuleloNemakh
    @NdamuleloNemakh 10 หลายเดือนก่อน +4

    Really enjoyed this series, I like re-learning these basics from time to time.👏

  • @collinsmarra
    @collinsmarra 5 หลายเดือนก่อน +1

    You wanna marry `var` David?

    • @davidfowl
      @davidfowl 3 หลายเดือนก่อน +2

      yes 😄

  • @VijayMyadam
    @VijayMyadam 4 หลายเดือนก่อน

    I can't find any videos after [Pt 18] | C# for Beginners, where can I find them

    • @dotnet
      @dotnet  4 หลายเดือนก่อน +2

      Full playlist is htere: th-cam.com/play/PLdo4fOcmZ0oULFjxrOagaERVAMbmG20Xe.html You are almost there! 19 is the last one!

  • @dios8256
    @dios8256 7 หลายเดือนก่อน

    This is a good format for learning. Great job!

  • @freakzone1284
    @freakzone1284 10 หลายเดือนก่อน +1

    Thank you! great video