/// <summary> /// 生成引用字符串,abc --> "abc" /// </summary> public static string ToQuote(this String source, char quoteChar) { return(StringHelper.ToQuote(source, quoteChar)); }