Skip to content

Update C# getting started page #16232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/csharp/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ ms.custom: seoapril2019
---
# Get started with C\#

This section provides short, simple tutorials that let you quickly build an application using C# and .NET Core. There are getting started topics for Visual Studio 2017 and Visual Studio Code. These articles assume some programming experience. If you are new to programming, try our [introduction to C#](../tutorials/intro-to-csharp/index.md) interactive tutorials.
This section provides short, simple tutorials that let you quickly build an application using C# and .NET Core. There are getting started topics for Visual Studio and Visual Studio Code. These articles assume some programming experience. If you are new to programming, try our [introduction to C#](../tutorials/intro-to-csharp/index.md) interactive tutorials.

The following topics are available:

- [Introduction to the C# Language and the .NET Framework](introduction-to-the-csharp-language-and-the-net-framework.md)
- [Introduction to the C# language and the .NET Framework](introduction-to-the-csharp-language-and-the-net-framework.md)

Provides an overview of the C# language and .NET.

- [Build a Hello World application with .NET Core in Visual Studio](../../core/tutorials/with-visual-studio.md)
- [Create a C# Hello World application with .NET Core in Visual Studio](../../core/tutorials/with-visual-studio.md)

Visual Studio lets you code, compile, run, debug, profile, and publish your applications from an integrated development environment for Windows or Mac.

The topic lets you create and run a simple Hello World application and then modify it to run a slightly more interactive Hello World application. Once you've finished building and running your application, you can also learn how to [debug it](../../core/tutorials/debugging-with-visual-studio.md) and how to [publish it](../../core/tutorials/publishing-with-visual-studio.md) so that it can be run on any platform supported by .NET Core.
The topic lets you create and run a simple Hello World application, and then modify it to run a slightly more interactive Hello World application. Once you've finished building and running your application, you can also learn how to [debug it](../../core/tutorials/debugging-with-visual-studio.md) and how to [publish it](../../core/tutorials/publishing-with-visual-studio.md) so that it can be run on any platform supported by .NET Core.

- [Build a class library with .NET Standard in Visual Studio](../../core/tutorials/library-with-visual-studio.md)
- [Create a class library with C# and .NET Standard in Visual Studio](../../core/tutorials/library-with-visual-studio.md)

A class library lets you define types and type members that can be called from another application. This topic lets you create a class library with a single method that determines whether a string begins with an uppercase character. Once you've finished building the library, you can develop a [unit test](../../core/tutorials/testing-library-with-visual-studio.md) to ensure that it works as expected, and then you can make it available to [applications that want to consume it](../../core/tutorials/consuming-library-with-visual-studio.md).

Expand Down