Methods | C# | Tutorial 12

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 มิ.ย. 2024
  • Source Code - www.giraffeacademy.com/program... This video is one in a series of videos where we'll be looking at programming in C#. The course is designed for new programmers, and will introduce common programming topics using the C# language.
    Throughout the course we'll be looking at various topics including variables, arrays, getting user input, loops, conditionals, object orientation and much more.

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

  • @joshuacaggiano8018
    @joshuacaggiano8018 5 ปีที่แล้ว +30

    You do a great job of explaining things without making them overly complex , I also like how you get right down to the information.

    • @bojohannesen4352
      @bojohannesen4352 15 วันที่ผ่านมา

      You should consider doing the same.

  • @saxzphone
    @saxzphone 6 ปีที่แล้ว +38

    This is the best TH-cam channel to learn programming and the best on the internet. Well done for creating high quality content for everyone to use and keep it up!

    • @kenndysamora1056
      @kenndysamora1056 2 ปีที่แล้ว +2

      The best programming Channel . Good presentation and clarity.

  • @markyu1996
    @markyu1996 3 ปีที่แล้ว +8

    Brilliant, one of the best tutorials, easy to understand, and explained thoroughly!!

  • @neofilomata3254
    @neofilomata3254 4 ปีที่แล้ว +17

    Just so people know, there is no functional difference between Functions and Methods, the only reason they are called different is that a method is a function within a class (he´ll explain what´s a class later) and a function is one outside of a class.
    Great vid BTW.

  • @FleetTech97
    @FleetTech97 3 ปีที่แล้ว

    Best teacher on TH-cam.
    My cousin has been teaching me and my cousins to code over the last month and will continue to do it. I always watch your videos to get even a better understanding of what I’m learning

  • @martinmica4260
    @martinmica4260 3 ปีที่แล้ว +2

    Thank you very much! I try to learn C# on my own and it is really hard sometimes, so Im really glad you gave me these basics

  • @JC-xc8rx
    @JC-xc8rx 5 ปีที่แล้ว +2

    Very good job Mike!

  • @hurricane7800
    @hurricane7800 3 ปีที่แล้ว

    Mike Dane, back at it again saving my ass in programming class! Thank you so much!

  • @user-jn3dn4ss2i
    @user-jn3dn4ss2i 3 หลายเดือนก่อน

    Thanks a lot! I was struggling to understand methods and watched many videos and couldn't understand what's about. But you explained it in a simpler way which helped me understand it without complexity ❤

  • @blaircox1589
    @blaircox1589 6 ปีที่แล้ว +4

    Really well done, surprised you haven't had more views and comments!

  • @Marandal
    @Marandal ปีที่แล้ว

    Very useful with mutliple examples, easy to understand. Thank you!

  • @torontogamestudio2991
    @torontogamestudio2991 ปีที่แล้ว

    I've had a hard time understanding methods, but this video cleared many things up

  • @MsCarbonCopy
    @MsCarbonCopy ปีที่แล้ว

    I passed another part of my online course!! THANK YOU!!!

  • @suhas6951
    @suhas6951 3 ปีที่แล้ว +1

    truly amazing

  • @MsCarbonCopy
    @MsCarbonCopy ปีที่แล้ว

    Dude!! Sir Dude...my online course and the words and way they explain the arrays and how you count them, is confusing. But, since I started watching your tutorials first, I can understand what the instructor is actually trying to say. Then I wonder why they cannot explain it as easy as you do! THANK YOU! THANK YOU!!

  • @MsCarbonCopy
    @MsCarbonCopy ปีที่แล้ว

    Thank you! I would have ended up giving up if you did not have these c# tutorials! The instructor for my c# online class, sounds like Ben Stein from 'Ferris Bueller'!

  • @insatiablegoddessg5300
    @insatiablegoddessg5300 4 ปีที่แล้ว

    love it

  • @nem.devseth
    @nem.devseth 3 ปีที่แล้ว

    Awesome

  • @user-zm5sk4ht9c
    @user-zm5sk4ht9c 4 ปีที่แล้ว +2

    Man I'm so glad I learned Python basics and OOP basics before I jumped into C#... I imagine how much more confused I would be If I wouldn't have. It's all so clear now lol just from hearing little bits and pieces like "encapsulating" wink wink :D
    I understand now why they say that Python is way more beginner friendly than C#

    • @doozy2483
      @doozy2483 3 ปีที่แล้ว

      indeed;
      do you like that totoro movie (i think i spelled the name wrong).

    • @user-zm5sk4ht9c
      @user-zm5sk4ht9c 3 ปีที่แล้ว

      @@doozy2483 I think the answer to that should be self explanatory. Don't you? Why would I use it as avatar if I didn't?

  • @hamjin
    @hamjin ปีที่แล้ว

    thank u for this

  • @richardfussell612
    @richardfussell612 2 ปีที่แล้ว

    I got so confused. In class my professor never told us what goes into the curly braces is part of the method that you created. While it seems so simple now, him not mentioning that made this topic so much more confusing

  • @srinuele9892
    @srinuele9892 4 ปีที่แล้ว +2

    can u please tell me why these methods are used, if already we have main method so y to use another method

    • @harshsawant4936
      @harshsawant4936 4 ปีที่แล้ว

      He explains it. Check the video again

    • @sasukesarutobi3862
      @sasukesarutobi3862 4 ปีที่แล้ว +1

      The basic answer is that it makes it easier to look after your code. If you have everything in the main method, it'll very quickly become too complicated and long. By using methods, you can break down your code into manageable pieces so you can work on it more easily.

    • @harshbarj
      @harshbarj 3 ปีที่แล้ว +3

      Short answer is you don't need to use another method. If your program is simple enough you may not need anything outside of your main method. You basically use them if you have a bit of code you want to reuse in other parts of your code. Think of it as the same thing as a subroutine in Basic.

  • @ayoubkamal1400
    @ayoubkamal1400 ปีที่แล้ว

    How does the hello name printed 3 times without looping

  • @howtoshadi
    @howtoshadi 5 ปีที่แล้ว +1

    Why not press CTRL+F5 which displays "Press Any Key To Continue..." automatically, without the need to pause the screen using an empty ReadLine() call.

    • @doozy2483
      @doozy2483 3 ปีที่แล้ว

      Wich text editor o you use?

    • @howtoshadi
      @howtoshadi 3 ปีที่แล้ว

      @@doozy2483 Visual Studio 2019 Community. It's an IDE not an editor

  • @unknownfactor6489
    @unknownfactor6489 3 ปีที่แล้ว +1

    A

  • @chelodaguplo4015
    @chelodaguplo4015 ปีที่แล้ว

    2:14
    thank me later