/// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="text">文本</param>
 /// <param name="type">格式化字符串标记类型</param>
 public FormatStringToken(string text, FormatStringTokenType type)
 {
     Text = text;
     Type = type;
 }
 public FormatStringToken(string text, FormatStringTokenType type)
 {
     Text = text;
     Type = type;
 }
Exemple #3
0
 public FormatStringToken(string text, FormatStringTokenType type)
 {
     this.Text = text;
     this.Type = type;
 }