is there a place to learn C# faster with examples?

Vincent Yu 1 Reputation point
2022-01-06T20:46:06.887+00:00

seems MSDN forum is down everywhere?

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,356 questions
{count} votes

5 answers

Sort by: Most helpful
  1. Karen Payne MVP 35,196 Reputation points
    2022-01-06T22:16:46.123+00:00

    If you are serious to learn C# then consider

    • Pluralsight which is a paid for site with hundreds of course on C#. Start off using their AI assessment which will direct you on the proper path. Many of the courses have their own assessments too. Pluralsight makes it easy to learn from highly rated authors to accessing courses from any device e.g. laptop, phone or tablet.
    • Use Microsoft Learn
    • Take time to read Microsoft documentation e.g. read up on general structure of a C# Program, types operators and expressions statements various classes Object-Oriented programming to name a few topics
    • During your learning try and keep things simple using either console or unit test projects, in other words separate backend learning from front end user interface learning.
    • At some point in time when you feel comfortable, scope out a simple project, write out task before coding then write the code rather than thinking and coding at the same time. Thinking and coding at a novice level is simply out is a disaster waiting to happen.
    • When seeking out information on the web and a solution is found do not simply copy and paste, examine the code, try and figure out what it's doing first before using said code.
    • Learn how to use GitHub in Visual Studio to backup and version code. Suppose you wrote code and broke it, with proper versioning in a GitHub repository you can revert changes and un-break code.
    • Use .NET Framework Core 5 or .NET Core Framework 6 rather than .NET Framework classic as there are more benefits to using .NET Core
    • Use Visual Studio 2019 or Visual Studio 2022 for coding.
    • If learning to work with data, start off with SQL-Server Express and install SSMS (SQL-Server Management Studio) along with learning to work with Entity Framework Core

    Know full well that moving slow is better than moving fast when learning any language and that nobody knows it all.

    1 person found this answer helpful.
    0 comments No comments

  2. P a u l 10,406 Reputation points
    2022-01-06T21:04:35.733+00:00

    I think for absolute beginners the MSDN docs are obligatory: https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/

    If you're already familiar with the fundamentals then you could have a browse through some .NET/C# code samples:
    https://learn.microsoft.com/en-us/samples/browse/?languages=csharp&expanded=dotnet&products=dotnet

    If you've got a reasonable idea of what sort of applications you want to make you could do some question/answer style training by browsing through here:
    https://learn.microsoft.com/en-us/learn/

    0 comments No comments

  3. Castorix31 81,861 Reputation points
    2022-01-06T21:07:15.427+00:00
    0 comments No comments

  4. Bruce (SqlWork.com) 57,646 Reputation points
    2022-01-06T21:14:29.837+00:00

    or just google "learn c#"

    0 comments No comments

  5. AgaveJoe 26,161 Reputation points
    2022-01-06T21:50:30.707+00:00
    0 comments No comments