How To Code An ATM Console App In C# | Programming Tutorial For Beginners | Visual Studio 2022

Поділитися
Вставка
  • Опубліковано 23 сер 2024
  • Hey Everyone!
    In today's video, we discuss how to code an ATM Application in C#. ATMs are simple and easy to use banking terminals that we use in our daily lives. Practicing coding real life things such as this can improve your skills quickly and make it easier to tackle other projects. Enjoy!
    Add Me On Discord!
    --------------------------------------------------------------------------------------
    Username: Shaun(Hashtag)5626
    Software Engineering / Programming for beginners / variables types / computer science /compsci / coding for beginners / learn how to program / learn how to code / C# variables / python for beginners / coding tutorial / programming tutorial
    Thanks for watching! :)
    Want to see more? Click on this spicy link :D
    / @shaunhalverson
    Assets in the thumbnail were provided by artists on
    www.canva.com
    All art and copyright ownership belongs to the artists on Canva and is under the protection of the Canva pro membership.
    #programming #tutorial #learntocode

КОМЕНТАРІ • 117

  • @masqueradinglampshade4369
    @masqueradinglampshade4369 6 місяців тому +2

    Videos like these showing simple projects are very useful for people coming from another programming language to understand the syntax of a new language. Thanks!

  • @zajac4817
    @zajac4817 4 місяці тому +1

    I love such "code-along" series. Two years later, but still, thanks!

  • @UzairAliShahOfficial
    @UzairAliShahOfficial 2 роки тому +33

    Very nicely explained, thank you. I am trying to learn C# and make as many projects using C#. I have subscribed. Thank you again 😊 👏

  • @martinjosephello6253
    @martinjosephello6253 Рік тому +4

    YOU JUST SAVE ME FROM MY MISERY !! THANK YOU SO MUCH YOU DESERVE MORE SUBS !!

  • @giorgichikovani4129
    @giorgichikovani4129 2 роки тому +12

    Well done! Keep going with interesting console projects!

  • @JamesTembo
    @JamesTembo 5 місяців тому +1

    i followed everything, a few Error, but managed to resolve them and all is Good...Thank you!!

  • @vinaykumarnavik3378
    @vinaykumarnavik3378 Рік тому +2

    I hv started c# few months back but not yet so confident bcoz I haven't did any kind of project ,so this was v.helpful .Thanks a ton .Would request you to make some more like this one in order to gain knowlegde and confident as well .

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

    I’ve never really understood the {get; set;} thing despite reading/watching about it 1000 times. I followed your tutorial here and thought “wtf are all these short, repetitive methods?” Then it hit me! HOLY SHIT THIS IS WHAT GET; SET; IS! Not sure if teaching that was your intention, but it was a big moment for me. Thanks. Request: connecting to SQL. ( I’ve tried 3 different ways and I still suck)

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

      Yo that’s awesome that I was able to show the value behind having those! I can’t remember if that was intended or not lol

    • @EduardoRodrigues-ev7ej
      @EduardoRodrigues-ev7ej Рік тому

      Please, can you explain to me? I mean, why are these GET methods returning the objects?

    • @omaralaa6839
      @omaralaa6839 Рік тому +2

      @@EduardoRodrigues-ev7ej
      From what i know
      GET is used to return and show the value to the user whenever is called
      From the other hand, SET is used to modify the value before returning it to the caller
      He didn’t return any object but returned attribute (info such as pin) of cardHolder object such as currentUser.balance as referring to balance of that specific object
      I hope it helps ❤

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

      same here, that get and set thing had been a mystery for ages. Now it makes perfect sense.

    • @EduardoRodrigues-ev7ej
      @EduardoRodrigues-ev7ej Рік тому

      @@omaralaa6839 UA-cam didn't warn me about your reply, it definitely helps, thanks!!

  • @jetbob309
    @jetbob309 2 роки тому +15

    Awesome tutorial. Would be cool to do another project similar but adding a design pattern such as MVC or Layered Pattern. Thanks again :)

  • @abrahambriones2843
    @abrahambriones2843 Рік тому +10

    Great stuff man. It would be awesome if you did similar tutorials with MVC and WPF

  • @ardijankajtazi3461
    @ardijankajtazi3461 Рік тому +6

    Hey shaun nice video, i wanted to know why you aren't using properties instead of making a method for every variable :)

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

    Hell yeah dude, awesome tutorial!

  • @sudipadhikari7388
    @sudipadhikari7388 3 місяці тому

    Good combination of Properties, List & Exception Handling

  • @namename-vs3kj
    @namename-vs3kj 7 місяців тому +1

    Hi Shaun, thanks for your hard work on this I've got a quick question and I would appreciate it if you look into this, so as a beginner I know that we use getters and setters to access a private class, however, I noticed you are using getter, setter even though the class is public can you explain why is that?
    Many thanks for considering my request.
    vBalayan

  • @reenyindiego5584
    @reenyindiego5584 Рік тому +3

    Thank you so much for this video, it's really simple and easy to understand and I had so much fun practicing all these😃🙌.

  • @nerdy.guy_yt
    @nerdy.guy_yt 2 роки тому

    i dont know about anything else but this guy, is truely a meme lover, bro you are a men of culture

  • @BrandonChawane
    @BrandonChawane 9 місяців тому

    i did mine a bit differently...most of my logic was in a class rather than main, but this was very informative. Thank you

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

    channel deserves more view, hot content here

  • @user-sp2qp1ru5g
    @user-sp2qp1ru5g 10 місяців тому +2

    Heyy. Can I ask why for FirstOrDefault in currentUser = cardHolder.FirstOrDefault(a => a.cardNum == debitCardNum); is marking it as an error? (I use Visual Studio 2022) Thanks for any help

  • @TimCodePH
    @TimCodePH 5 місяців тому

    Thanks bro I've learn a lot in this video and I use some of my existing knowledge like instead of concatenating I use string interpolation and I'm still lacking when it comes to OOP do you have any tips to master OOP?

  • @ozanbaskaya3630
    @ozanbaskaya3630 2 роки тому +6

    Hello Shaun, I just start learning C# and want to fill my GitHub with projects. Your videos are really helping me to achieve that. I just want to ask a question, there is a comment "check against our db" and below that a => a.cardNum == debitCardNum code.But I can't reach a.cardNum.It does not show it and gives error. Why is that?

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

      it's because the cardNum is a private member of the class so you can't have access to it outside of the class. So if you want to access it, you need to use your getter, so a.getNum()

  • @leojohn6702
    @leojohn6702 8 місяців тому +1

    Why String instead of string? I am new to c#. Capital letter to data type?

  • @antonios5174
    @antonios5174 2 роки тому +2

    Thank you alot man. This was really really helpfull!

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

    This was a great tutorial. Thank you Shaun

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

    Great tutorial, thanks a lot!

  • @ddt9978
    @ddt9978 2 роки тому +2

    Really nice video, I'm learning about inheritance and polymorphism, is there any way that I can try and add them into this program? I highly appreciate your answer.

  • @seedc4484
    @seedc4484 Рік тому +2

    Just wanted to ask if it ok to write every void function in main. I wanted to make logic in different class and then call void funcitions in main but i have no idea how to call them. I wanted to refresh object programming but i have no idea if this is correct way

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

    Hi there, I was wondering if you could help me understand something . When you refer to:
    (a => a, cardNum == debitCardNub);
    Is the a=>a representing the cardNum and debitCardNub ?
    And could I not use this same method for the pin ?
    (b=> b , userPin == newPin);

  • @rhtservicesllc
    @rhtservicesllc Рік тому +5

    As a c# developer there are a number of things I see wrong in this video.
    Per convention, c# Properties, Classes, and Methids are to be named using Pascal Case.
    Code violates the Separation of Concerns principle by having everything in the same file.
    Nesting function definitions inside of the Main method should not be done
    Variables are being declared outside of the scope where they actually need to be declared, this can be utilized for other things when they should not be
    Definitely needs changes to be acceptable for C# coding standards

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

    loveee these tutorials

  • @martinthernlund
    @martinthernlund 2 місяці тому

    I'm just here to tell my students to be wary of copying entire projects and hand them in as their assignment.

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

    Great tutorial. Thank you for the walk through.

  • @user-nk2lw5rj7u
    @user-nk2lw5rj7u 6 місяців тому

    Yo that's was awesome homie. thank you

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

    Hi
    Thanks for amazing tutorial. I have small problem. Even I was exactly the same code as yours I have lots of errors in my compilation. All happened after I use Save AS option.
    What happened it is easy explanation.
    Thank u

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

    nice one , definitely usefull for a beginner to learn practical oop

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

    The best❤️

  • @user-jw1uw8rj1z
    @user-jw1uw8rj1z 2 роки тому +1

    Hi. Thank you for your lesson.
    I have aquestion at 12:16 - how do you get access to variable "a.cardNum" if its Modifire is a "private"?

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

      if would have failed at execution, to acess it, he would have to use the getter he previously declared 😉

  • @luciferMorningstar-ko9qc
    @luciferMorningstar-ko9qc Рік тому +3

    I got 2 errors
    Cs1061 for the FirstorDefault
    Cs1656 cause it can’t assign get pin because it’s a method group

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

      I got the same errors. How did you resolve them?

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

      @@poswake @lucifer Morningstar put using System.Linq;

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

    Thank you bruh! ❤️❤️

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

    Lovely tutorial but I personally think you should write the positive part where if someone does have a enough money you put that in the if and if they don't you put that in the else but whatever

  • @arlie.sk8780
    @arlie.sk8780 Рік тому +1

    can anyone explain me, how did first name last name, pin in db automatically set to currentUser.pin, currentUser,firstName etc

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

    Thank you very much.

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

    I have a question regarding the beginning state of Visual Studio. Why don't you keep the using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks, the namespace, the internal class and the Main?
    I did a beginner course and we always kept it and my teacher never explained what it does

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

    Thanks bro!

  • @OhSoMomo
    @OhSoMomo 10 місяців тому

    Thank you.

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

    Great tutorial

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

    thank you

  • @ChandanSharma-ud4zv
    @ChandanSharma-ud4zv 2 роки тому

    Really Nice 👍

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

    I love how the first 4 mins it was just boiler plate code XD
    fuck man I love C#

  • @amysticalentity7910
    @amysticalentity7910 2 роки тому

    Thanks a lot for this! My grades are saved XD

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

    Thank you

  • @arhamkhanvlogs.5491
    @arhamkhanvlogs.5491 2 роки тому +1

    Hey,
    I’m facing some kind of errors !!
    Please check it.

  • @no_nick.4
    @no_nick.4 Рік тому

    Thank you'👌👌👌👌

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

    I get error CS1555: Could not find 'Program' specified for Main method?

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

    How would you make a function to register a new user?

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

    Thanky you

  • @ed-ou812
    @ed-ou812 Рік тому

    I never saw where you created setup the currentUser.

  • @fajom9886
    @fajom9886 2 роки тому

    Could you do it with windows forms?

  • @victorafolabi6811
    @victorafolabi6811 2 роки тому

    Very good, however I had a little problem following your solution. I used a pin of 0000 for one of my entries, when running my program If I input 0, 00 or 000, it doesn’t catch the error

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

      Because pin is declared as an integer. Thus "0000" is the same as "0". Pin should be a string instead of an integer.

  • @jetpuckrat9819
    @jetpuckrat9819 2 роки тому

    Why cant i call Functions from the same class without writing "className.FunctionName();"
    and I have to reference the class in a virable in the main method "var className = new classnametype"
    You seem like you do it without referring to the class

  • @cosmictcb
    @cosmictcb 9 місяців тому

    "I'm sorry, but you should probably upgrade."
    There are many reasons why, in a professional environment, upgrading is not always an option.

  • @WU-HU-XI-LIAN-DA_STRIKE
    @WU-HU-XI-LIAN-DA_STRIKE 2 роки тому +1

    I hear some people say all method's should begin with a capital

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

      For C# that is correct. Same for class names and property names. The code presented here would not pass a code review

  • @Akas766
    @Akas766 2 роки тому

    great

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

    how can i have these codes???
    (i want to analyze them)

  • @mohammedshoebahmed3543
    @mohammedshoebahmed3543 Рік тому +2

    can you provide the code?

  • @JtotheB
    @JtotheB 8 місяців тому

    why use list instead of an array?

  • @viktoriamoskalenko8869
    @viktoriamoskalenko8869 8 місяців тому

    Hey guys,
    Do anyone have a problem :
    Error CS0841 Cannot use local variable 'currentUser' before it is declared ATM
    Error CS0136 A local or parameter named 'currentUser' cannot be declared in this scope because that name is used in an enclosing local scope to define a local or parameter ATM

    • @planetsj527
      @planetsj527 5 місяців тому

      yes, i cant figure it out, i tried declaring it in the Main method, but its still no working? super confused. did you figure it out?

  • @adeizayusuf
    @adeizayusuf 2 роки тому

    instead of creating different getters and setters, why dont you use properties?

    • @lee5150
      @lee5150 Рік тому +2

      I thought that. This is very long winded. It’s also very messy. It’s more procedural than OPP.

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

    I'm 10min into the video I'm a total beginner I understand what's going on, but not fully

    • @ShaunHalverson
      @ShaunHalverson  2 роки тому

      Anything that doesn't make sense to you that I could help clear up? Have any questions?

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

    You are confusing the declaration of variables with initialization in the first minute of the video, these differences are very important for people who are learning.

  • @AbdulRahman-92089
    @AbdulRahman-92089 Рік тому

    hello bro please i need the sourcecode for mt College project

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

    The List cardHolders = new List (); cant run because of this pls someone help me🙏😩

  • @Farid_Fr
    @Farid_Fr 7 місяців тому

    Beautiful, non-existent oh

  • @suleyman2981
    @suleyman2981 9 місяців тому

    it dint work with me its full blank :(

  • @yalekhuemichael1025
    @yalekhuemichael1025 2 роки тому

    I do not understand this 2 lines
    1, void Deposit(CardHolder current user)
    2, current user.SetBalance(deposit);

    • @eduardapalmeida7777
      @eduardapalmeida7777 2 роки тому

      In the first one, he's creating the Deposit method and passing the object that contains all the current user information. In the second one, he explained it was a mistake, the correct way to do it is at 17:36

  • @Unknown-ki8yk
    @Unknown-ki8yk 2 роки тому

    Why are you writing in Java way in C#? You do not need to write functions for accessing the fields. This is old style.

  • @paternoosa4589
    @paternoosa4589 10 місяців тому

    why my pin is always incorrect?

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

    thank you for the effort. but this is far from best practices !! and conventions.

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

    why do u say github copilot as intellisense? both are completely different and u r complaining about vs 2022 and upgrade ur stuff blah blah

  • @user-wf2js7qm9g
    @user-wf2js7qm9g Рік тому

    code please

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

    Plz can you send me those code

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

    i want money!

  • @timhortons5056
    @timhortons5056 2 роки тому

    Friend the code??? Please

    • @adeizayusuf
      @adeizayusuf 2 роки тому

      you will learn more typing it . its not much

    • @imgood8519
      @imgood8519 2 роки тому

      @@adeizayusuf i got error

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

    Why all this rush there is beginners here dislike

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

    Nice code. It gives only 65 errors.😅

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

    Bruh what happened to the coding style? This is not Java totorial, why would you make a tutorial with such an ugly peace of code?

  • @Lone-Wolf516
    @Lone-Wolf516 Рік тому +1

    i got 61 errors in this code, when i copied it exactly, not once, but twice, waste of time

    • @washere3955
      @washere3955 7 місяців тому

      Was the code correct, like did you miss type something?

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

    Amazing video, sent you a discord friend request!