Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 238 Bytes

MA0110.md

File metadata and controls

11 lines (8 loc) · 238 Bytes

MA0110 - Use the Regex source generator

Use the Regex Source Generator when possible.

new Regex("constant pattern"); // report diagnostic

// ok
[GeneratedRegex("constant pattern")]
private static partial Regex MyRegex();