public PunctuationSymbol(char ch) : base() { Type = (PunctuationType)PunctuationMarks.IndexOf(ch); }
public PunctuationSymbol(PunctuationType type) : base() { Type = type; }