How do I use the inline modifiers instead of RegexOptions.Option?
For example:
Regex MyRegex = new Regex(@"[a-z]+", RegexOptions.IgnoreCase);
How do I rewrite this using the inline character i?
How do I use the inline modifiers instead of RegexOptions.Option?
For example:
Regex MyRegex = new Regex(@"[a-z]+", RegexOptions.IgnoreCase);
How do I rewrite this using the inline character i?