2 references to IsLowerAlpha
Microsoft.NET.Build.Containers (2)
ContainerHelpers.cs (2)
318
if (
IsLowerAlpha
(current) || IsNumeric(current) || IsAllowedPunctuation(current))
360
static bool IsAlpha(char c) =>
IsLowerAlpha
(c) || IsUpperAlpha(c);