Novell.Directory.Ldap.Utilclass.SchemaTokenCreator.WhitespaceCharacters C# (CSharp) Méthode

WhitespaceCharacters() public méthode

public WhitespaceCharacters ( int min, int max ) : void
min int
max int
Résultat void
        public void WhitespaceCharacters(int min, int max)
        {
            if (min < 0)
                min = 0;
            if (max >= ctype.Length)
                max = ctype.Length - 1;
            while (min <= max)
                ctype[min++] = (sbyte)CharacterTypes.WHITESPACE;
        }