Candor.LexicalCharacterSet.LexicalCharacterSet C# (CSharp) 메소드

LexicalCharacterSet() 공개 메소드

Creates a new character set.
public LexicalCharacterSet ( String name, Int32 caseInsensitiveLength, IEnumerable chars ) : System
name String
caseInsensitiveLength System.Int32
chars IEnumerable
리턴 System
        public LexicalCharacterSet(String name, Int32 caseInsensitiveLength, IEnumerable<char> chars)
        {
            _name = name;
            _characters = new ReadOnlyCollection<char>(new List<char>(chars));
            _caseInsensitiveLength = caseInsensitiveLength;
        }

Same methods

LexicalCharacterSet::LexicalCharacterSet ( String name, Int32 caseInsensitiveLength, IList chars ) : System