using-generated-regex
Installation
SKILL.md
Using GeneratedRegex (Source Generator)
Use GeneratedRegexAttribute for compile-time regex generation instead of runtime new Regex().
Why GeneratedRegex?
| Aspect | Runtime Regex | GeneratedRegex |
|---|---|---|
| Compilation | Runtime | Compile-time |
| Performance | Slower first match | Pre-compiled, faster |
| AOT Support | Limited | Full support |
| Memory | Allocates at runtime | No runtime allocation |
| .NET Version | All | .NET 7+ |