mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
11 lines
257 B
C#
11 lines
257 B
C#
using System.Text.RegularExpressions; // [GeneratedRegex]
|
|
|
|
partial class Program
|
|
{
|
|
[GeneratedRegex(digitsOnlyText)]
|
|
private static partial Regex DigitsOnly();
|
|
|
|
[GeneratedRegex(commaSeparatorText)]
|
|
private static partial Regex CommaSeparator();
|
|
}
|