This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// 得到处理参数和转义后的最终字符串 | |
/// </summary> | |
/// <param name="rawStr">未处理的字符串</param> | |
/// <param name="args">参数</param> | |
/// <returns></returns> | |
public string GetFinalString(string rawStr, params object[] args) | |
{ | |
// 处理参数和转义 | |
// 填充参数 |