System.DomainNameHelper.IsASCIILetter C# (CSharp) 메소드

IsASCIILetter() 개인적인 정적인 메소드

private static IsASCIILetter ( char character, bool &notCanonical ) : bool
character char
notCanonical bool
리턴 bool
        private static bool IsASCIILetter(char character, ref bool notCanonical) {

            if (character >= 'a' && character <= 'z')   return true;

            if (character >= 'A' && character <= 'Z')
            {
                if (!notCanonical) notCanonical = true;
                return true;
            }
            return false;
        }
        //