From 9ec86f0ea324a3b75a735449ea29b48df32d54b4 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 16 Nov 2022 12:59:22 +0100 Subject: [PATCH] feat(dotnet): add raw string literals & generic attributes notes --- docs/dotnet/C#/C#.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md index e2ef3fb..297f334 100644 --- a/docs/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -447,6 +447,35 @@ String.Format($"{variable}"); // string interpolation outside of a Write/WriteLi String.Empty; // value of an empty string, used for string init ``` +### Raw string literals + +Raw string literals can contain arbitrary text, including whitespace, new lines, embedded quotes, and other special characters without requiring escape sequences. +A raw string literal starts with at least three double-quote (`"""`) characters. It ends with the same number of double-quote characters. +Typically, a raw string literal uses three double quotes on a single line to start the string, and three double quotes on a separate line to end the string. +The newlines following the opening quote and preceding the closing quote aren't included in the final content: + +```cs + +string longMessage = """ + This is a long message. + It has several lines. + Some are indented + more than others. + Some should start at the first column. + Some have "quoted text" in them. + """; +``` + +> **Note**: Any whitespace to the left of the closing double quotes will be removed from the string literal. + +Raw string literals can be combined with _string interpolation_ to include braces in the output text. Multiple `$` characters denote how many consecutive braces start and end the interpolation + +```cs +var location = $$""" + You are at {{{Longitude}}, {{Latitude}}} + """; +``` + --- ## Nullable Types @@ -2442,6 +2471,8 @@ public class CustomAttribute : Attribute } ``` +> **NOTE**: From C# 11 attributes can be generic and have type constraints + ### Retrieving Attributes It's possible to discover which attributes have been applied through the reflection API.