diff --git a/docs/csharp/tutorials/index.md b/docs/csharp/tutorials/index.md index 86b5c89661aa9..c7508e5b3d181 100644 --- a/docs/csharp/tutorials/index.md +++ b/docs/csharp/tutorials/index.md @@ -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#. diff --git a/docs/csharp/tutorials/string-interpolation.md b/docs/csharp/tutorials/string-interpolation.md index 2b3c119bd9480..fa739b9431418 100644 --- a/docs/csharp/tutorials/string-interpolation.md +++ b/docs/csharp/tutorials/string-interpolation.md @@ -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 --- diff --git a/docs/toc.md b/docs/toc.md index 1cf048b204238..dbd2b17a5629d 100644 --- a/docs/toc.md +++ b/docs/toc.md @@ -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)