mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
14 lines
430 B
C#
14 lines
430 B
C#
using System.Diagnostics.CodeAnalysis; // [StringSyntax]
|
|
|
|
partial class Program
|
|
{
|
|
[StringSyntax(StringSyntaxAttribute.DateTimeFormat)]
|
|
const string fullDateTime = "dddd, d MMMM yyyy";
|
|
|
|
[StringSyntax(StringSyntaxAttribute.Regex)]
|
|
const string digitsOnlyText = @"^\d+$";
|
|
|
|
[StringSyntax(StringSyntaxAttribute.Regex)]
|
|
const string commaSeparatorText =
|
|
"(?:^|,)(?=[^\"]|(\")?)\"?((?(1)[^\"]*|[^,\"]*))\"?(?=,|$)";
|
|
} |