SharpLab
SharpLab copied to clipboard
.NET language playground
Results
113
SharpLab issues
Sort by
recently updated
recently updated
newest added
I'm trying to see the generated code using the new [`GeneratedRegex` in .NET 7](https://devblogs.microsoft.com/dotnet/regular-expression-improvements-in-dotnet-7/#source-generation) ```cs using System.Text.RegularExpressions; public static partial class RegexExtensions { [GeneratedRegex($@"[abc]")] public static partial Regex IsABC(); }...
:lady_beetle: bug