From 4969e85853281a604994d3ffc362317886d17b13 Mon Sep 17 00:00:00 2001 From: Kaan Date: Mon, 15 Apr 2019 13:21:22 +0300 Subject: [PATCH] Added "More Information" Section (#30483) --- guide/english/csharp/string-interpolation/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/csharp/string-interpolation/index.md b/guide/english/csharp/string-interpolation/index.md index 58920ab52a..16a158a792 100644 --- a/guide/english/csharp/string-interpolation/index.md +++ b/guide/english/csharp/string-interpolation/index.md @@ -24,3 +24,6 @@ int a = 3; int b = 454; string result = $"{a}+{b} = {a+b}"; ``` + +### More Information +* [Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated)