How To Code A Telephone Book In C# | Programming Tutorial For Beginners | Visual Studio 2022

Sdílet
Vložit
  • čas přidán 6. 06. 2022
  • Hey Guys!!
    In today's video, we discuss how to make a phonebook in C#. This is a great starter project for anyone and something that is an easy real life example to model your code after. Everyone has contacts and phone numbers they want to record, why not code your own?! 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

Komentáře • 9

  • @aitools111
    @aitools111 Před rokem +1

    Great ,thank you

  • @MethodOverRide
    @MethodOverRide Před 2 lety

    Great video 👍

  • @bwolllard
    @bwolllard Před rokem

    I would like to see a part two with data validation for email and phone formats.

  • @LeeKobe1
    @LeeKobe1 Před rokem

    Great tutorial! Is there a way to insert a photo image in the gui with their personal info? Thanks!

  • @pollymolly8128
    @pollymolly8128 Před rokem +1

    Theres a problem on load button

  • @hallythejester1234
    @hallythejester1234 Před rokem

    Whenever I click the load button, the backend code comes back up and the error I see is System.IndexOutOfRangeException: 'index was out of bound of the array.' i don't get it. i numbered the arrays properly so why is it saying that

  • @kailashavinash8086
    @kailashavinash8086 Před 2 lety

    C) Create an interface called Payable. This is the interface that will be used by the accounting department's software (which you are not responsible for authoring) for all things that they need to write checks for. The Payable interface should contain three functions:
    Retrieve amount due
    Add to amount due
    Payment address
    Derive an Employee class from the Person class. The Employee class should add the following properties:
    Salary
    Mailing address
    In addition, the Employee class should implement the Payable interface. The implementation of the functions specified in the Payable interface should make sense. In other words, the payment address should be the mailing address of the employee. In order to make this work right, you will need to allocate an internally protected state variable that keeps track of the amount of money due. This state variable will obviously be modified by the functions defined in the interface. You can of course, try to do this with a property and add this property to the Payable interface.