/learn_csharp

Resources related to my learning of C#.

Primary LanguageC#

Introduction to C# (C-Sharp)

It is an object-oriented programming language created by Microsoft that runs on the .NET Framework. C# has roots from the C family, and the language is close to other popular languages like C++ and Java. The first version was released in 2002 while the latest version, C# 8, was released in September 2019.


Links & Resources


Getting Started

Compiling C#

Run the C# compiler by executing the following command:

C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe
          /t:exe /out:MyApplication.exe MyApplication.cs  ...