Tuesday, January 28, 2020

C# Fundamentals

C# is a popular multi paradigm programming language. I am going to cover C# along with .Net Core.

While speaking about .Net there are two frameworks available. These is the .Net Framework which works only in Windows.
The other is .Net Core which is a multi platform open source technology.

While speaking about .Net there is a Common Language Runtime (CLR).  It is the platform on which the .Net Application works.

Another component of .Net is the Framework Class Library (FCL) which is a collection of classes.

dotnet
Once the .Net Core is installed you can acces the Command Line Interface (CLI) by typing dotnet in the command prompt.




dotnet --info
I can have more information about .Net Core by typing dotnet --info




dotnet --help
If you want help of .Net Command then type the command dotnet --help

dotnet new
Issuing dotnet new command will list the different Project templates available.



No comments:

Post a Comment