/// <summary> creates a Tokenizer instance that can parse a string quoted by open and close.</summary> /// <param name="open">the opening quote /// </param> /// <param name="close">the closeing quote /// </param> /// <returns> the tokenizer. /// </returns> public static Tokenizer ForQuotedString(string open, string close) { return(TokenQuoted.GetTokenizer(open, close)); }
/// <summary> creates a Tokenizer instance that can parse a string quoted by open and close.</summary> /// <param name="open">the open quote /// </param> /// <param name="close">the close quote /// </param> /// <returns> the tokenizer. /// </returns> public static Tokenizer ForQuotedString(char open, char close) { return(TokenQuoted.GetTokenizer(open, close)); }