Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions docs/csharp/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ features in the C# language.
* [Working with LINQ](working-with-linq.md): demonstrates many of the features of LINQ and the language elements that support it.

* [Microservices hosted in Docker](microservices.md): demonstrates building an ASP.NET Core microservice and hosting it in Docker.

* [Inheritance](inheritance.md): demonstrates how class and interface inheritance provide code reuse in C#.

* [String Interpolation](string-interpolation.md): demonstrates many of the uses for the `$` string interpolation in C#.
6 changes: 3 additions & 3 deletions docs/csharp/tutorials/string-interpolation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ title: String Interpolation | C#
description: Learn how string interpolation works in C# 6
keywords: .NET, .NET Core, C#, string
author: mgroves
manager: BillWagner
ms.author: wiwagn
ms.date: 12/09/2016
ms.topic: article
ms.prod: .net-core
ms.technology: .net-core-technologies
ms.prod: .net
ms.technology: devlang-csharp
ms.devlang: csharp
ms.assetid: f8806f6b-3ac7-4ee6-9b3e-c524d5301ae9
---
Expand Down
1 change: 1 addition & 0 deletions docs/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@
### [REST client](csharp/tutorials/console-webapiclient.md)
### [Working with LINQ](csharp/tutorials/working-with-linq.md)
### [Microservices hosted in Docker](csharp/tutorials/microservices.md)
### [Using String Interpolation](csharp/tutorials/string-interpolation.md)
## [Tour of C#](csharp/tour-of-csharp/index.md)
### [Program Structure](csharp/tour-of-csharp/program-structure.md)
### [Types and Variables](csharp/tour-of-csharp/types-and-variables.md)
Expand Down