public SuggestionToken(SuggestionTokenId type, string value, int pos, int length)
 {
     Type   = type;
     Value  = value;
     Pos    = pos;
     Length = length;
 }
 public SuggestionToken(SuggestionTokenId type, int pos, int length)
 {
     Type   = type;
     Value  = string.Empty;
     Pos    = pos;
     Length = length;
 }