mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
feat(dotnet): add raw string literals & generic attributes notes
This commit is contained in:
parent
c83b5dc987
commit
9ec86f0ea3
1 changed files with 31 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue