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