From 0d06e3b962b2167de60d132294f0f5f040dc4163 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 16 Dec 2024 23:20:12 +1000 Subject: [PATCH] Updated Available C# and .NET features (markdown) --- Available-C#-and-.NET-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Available-C#-and-.NET-features.md b/Available-C#-and-.NET-features.md index aa770c9..ed9ac16 100644 --- a/Available-C#-and-.NET-features.md +++ b/Available-C#-and-.NET-features.md @@ -29,7 +29,7 @@ Feature | 🔵 `net48` | 🟢 `ns2.0` | convention for main BizHawk solution [`allows ref struct` constraint](https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/generics/constraints-on-type-parameters#allows-ref-struct) | ❌ | ❌ | unsupported [interfaces for `ref struct`s](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/ref-struct#restrictions-for-ref-struct-types-that-implement-an-interface) | ✔️ | ✔️️ | discouraged (very useless) [`ref struct`s and `unsafe` in state-machine methods](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-13#ref-and-unsafe-in-iterators-and-async-methods) | ? | ? | unsupported -[an escape for ESC](https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/#string-escape-sequences) | ✔️ | ✔️️ | waiting for .NET 10 LTS +[escape sequence for ␛ char](https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/#string-escape-sequences) | ✔️ | ✔️️ | waiting for .NET 10 LTS sugar for [`lock`](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/statements/lock) with `Lock` | ⭕ | ⭕ | should be able to use polyfill w/ C# 12 enhanced [`params`](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/method-parameters#params-modifier) | ✔️ | ✔️ | waiting for .NET 10 LTS ^ C# 13 ^ | 🔵 `net48` | 🟢 `ns2.0` | ---