The best way to learn C#

Lamia Elshahat Eldesoky 76 Reputation points
2022-07-14T23:07:45.223+00:00

I ask for help to learn C# l want an answer

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,650 questions
{count} votes

4 answers

Sort by: Most helpful
  1. Castorix31 83,206 Reputation points
    2022-07-15T00:11:50.337+00:00
    1 person found this answer helpful.

  2. Karen Payne MVP 35,386 Reputation points
    2022-07-15T07:59:12.963+00:00

    Where many newcomers go wrong is taking on too much and not learning the basics. It can be frustrating to start with the basics but this gives you a solid foundation for moving forward.

    Dependent on being your first programming language or not.

    Start here and run through the documentation. Explore the courses listed here.

    When learning to code, do not use windows forms or web application, instead learn the basics using either or unit test or console projects. Why unit test and/or console projects? Because this allows one to focus on one topic e.g. learning to work with statements, learning to work with data (e.g. SQL-Server, Oracle, MS-Access etc). Also another benefit is if something breaks inside an application with many moving parts one must debug code in two different places while having unit test can indicate if there is failure in backend code or frontend code for instance.

    Use Visual Studio 2022 or Visual Studio 2019 rather than older versions and start with .NET Framework 4.8 rather than .NET Core Framework. If you like to know why ask me.

    Learn how to debug, many developers rely on using console write line or debug write line while there are much better ways using Visual Studio’s debugger.

    Once the basics are understood, now is the time to create an application to learn how to put all the pieces together. Before writing any code for the application, lay out a design on paper, in a document or other tool. Working with data? Do not write SQL in the application, write SQL for instance in SSMS (SQL-Server Management Studio) and when it works write code and test using one or more unit test.

    For the serious at heart to properly learn

    • Use Pluralsight its a paid service like no other
    • Create a GitHub repository for learning various aspects of C# similar to mine for sharing knowledge.
    1 person found this answer helpful.

  3. Lamia Elshahat Eldesoky 76 Reputation points
    2022-07-15T02:18:05.667+00:00

    More explanation please


  4. Olaf Helper 43,331 Reputation points
    2022-07-15T06:38:47.12+00:00

    l want an answer
    More explanation please

    It's not the friendliest way to post.
    Why not simply searching for it on web?