Candor.LexicalCharacterSet.LexicalCharacterSet C# (CSharp) Method

LexicalCharacterSet() public method

Creates a new character set.
public LexicalCharacterSet ( String name, Int32 caseInsensitiveLength, IEnumerable chars ) : System
name String
caseInsensitiveLength System.Int32
chars IEnumerable
return 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