Setup For C# .NET in Visual Studio Code
What is C#?
C# is obeject-oriented programming language. C# is similar to Java programming language. C# was developed by Microsoft in 2000. It is used to create desktop and web applications. C# - C Sharp. It is work on .NET framework.
What is .NET Framework?
.Net framewo
rk is software development for creating web and desktop application on windows.
Setup For C# .Net In VS Code:
C# Support in Visual Studio Code.
Follow Below Steps for Setup:
- Firstly We need to download and install Visual Studio Code.
- Then, We need to download and install .NET Core SDK latest version.
- After Installing .NET SDK Create a folder.
- And Open this folder into Terminal.
- Type into the command line "dotnet"
- Type "code." to open the VS Code.
- Then Open VS code Terminal and type "dotnet new console"
- Type "dotnet restore"
- Open the program "Program.cs".
- And type into terminal "dotnet run" to run the program.
0 Comments