LINQ in C#.Net made easy! - PART 5 : Enumerable Class | Codelligent

Sdílet
Vložit
  • čas přidán 19. 06. 2024
  • This is the FIFTH and last video of our LINQ in C#.Net series.
    In this video you will learn Enumerable Class and many useful methods of LINQ with the help of simple code examples.
    00:00 - Intro
    00:30 - Enumerable Class in LINQ
    04:15 - Writing logics using Enumerable.Range()
    09:19 - More useful methods in LINQ
    If you found this video helpful don’t forget to hit the Like button!
    If you wish to join us for future learning, do Subscribe this channel and hit the Bell icon to get the future video notifications!
    #LINQ #DotNet
    -----------------------------------------------------------------------------------------
    We believe in - "Knowledge increases by sharing!!"
    Who are we?
    We are a bunch of IT professionals who love to teach apart from our regular coding work! 👬👫
    Why this Channel?
    In our career, we have noticed that many new programmers get confused while coding, even though they are aware of that concept. We help them understand the concept in our office. 🤗
    So, we thought why not share these concepts in the same easy to understand way to the whole world.
    Let every one who is starting their coding journey get to learn and become a better programmer! 😊
    We have taught many people offline, and now trying to make an online presence to help wider audience. 💖
    Let's Code!
    #LoveForCoding #LoveForTeaching #Codelligent #LetsCode #India
    -----------------------------------------------------------------------------------------
    Intro music credit: www.zapsplat.com
    Intro background image credit: www.freepik.com

Komentáře • 17

  • @atif.bilytica
    @atif.bilytica Před 2 měsíci

    Thanks a lot for such a NICE series.

  • @AbhayMamidpalliwar
    @AbhayMamidpalliwar Před rokem

    Thanks Much. Please post a Series on EF and LINQ as you said at the nd of this video.

  • @alysonramos3424
    @alysonramos3424 Před 2 lety

    Good content man

  • @stepbackandthink
    @stepbackandthink Před rokem

    It's a shame you didn't get the exposure and therefore the subscriber volume that you deserve. I've been watching Tutorials for years are you are easily one of the best teachers. Clear and concise. Please keep going and I'm sure the algorithms will grant you the popularity you deserve.

    • @CODELLIGENT
      @CODELLIGENT  Před rokem

      Thanks a lot for such kind words! Happy that it has been useful for you. 😇

  • @zdkcy2510
    @zdkcy2510 Před 4 lety +1

    As always, great tutorial! Many thanks friend!

  • @chandniknair3801
    @chandniknair3801 Před 4 lety +1

    Great video 👍

  • @jessy9643
    @jessy9643 Před 3 lety

    Great tutorial.. Please make a complete c# tutorial.. will be very useful for us..

    • @CODELLIGENT
      @CODELLIGENT  Před 3 lety

      Thanks a lot for the suggestion. Will try to do a complete C# series!
      Keep supporting and share to your friends. 😊

    • @jessy9643
      @jessy9643 Před 3 lety

      @@CODELLIGENT Invoke and begin invoke..
      Solid design principles, dependency inversion topics are rare in CZcams.. would be great if you could do it

  • @shayama
    @shayama Před 2 lety +1

    Hello. Thank you for video!
    What is explanation of this changing numbers on chars (char)(n + 'a') how it can "know" what to do with it? Thank you.

    • @CODELLIGENT
      @CODELLIGENT  Před 2 lety +1

      Hi.. Internally it is using ASCII value.
      When you say char 'a', internally it is ASCII code 97. And when you add 1 to 97, 98 is the ASCII code for 'b'. If you cast it as an int, it will be 98. If you cast it as a char, it will be 'b'.
      Please check the ASCII table for all the codes of each character.
      Hope this clarifies your doubt. 😊

    • @shayama
      @shayama Před 2 lety

      @@CODELLIGENT Yes, thank you. I think I saw some fake, if I can say like that xD ASCII when I was checking it. Anyway, thank you ;)