Difference between revisions of "User:Jeffj/CS3123/Homework/CSharp/notes"
From A-State Computer Science Wiki
< User:Jeffj | CS3123 | Homework | CSharp
Line 29: | Line 29: | ||
# Start terminal | # Start terminal | ||
# Compile/Run | # Compile/Run | ||
+ | |||
+ | Introductory Tutorial on C# | ||
+ | * Learn C# [https://www.learncs.org/] |
Revision as of 10:17, 4 February 2020
Visual Studio 2019 - Windows, Mac
- Download software for your platform, Install
- Open Visual Studio
- Execute the Visual Studio in your applications
- Start Project
- Select option for "new" project on the menu
- Under ".NET Core", select "App"
- In the list, select "Console Application", make sure "C#" is selected in the drop-down
- Select "Next"
- Use default Target Framework, ".NET Core 3.1"
- Select "Next"
- Type "Hello" in the "Project Name", "Solution Name" will autofill
- Select "Browse" to choose the directory for Visual Studio projects
- Select "Create"
- Compile/Run
- In application menu, select "Run"->"Start Debugging"
- For more information on this process look at this website [3]
Visual Studio Code - Windows, Mac, Linux
- Download software for your platform
- Install Extensions for Microsoft C# development
- Instructions [6]
- New file
- Start terminal
- Compile/Run
Introductory Tutorial on C#
- Learn C# [7]