コード例 #1
0
 /// <summary>
 /// 替换字符
 /// </summary>
 public static string Replace(this String source, string oldValue, string newValue, int startIndex, int count, bool ignoreCase)
 {
     return(StringHelper.Replace(source, oldValue, newValue, startIndex, count, ignoreCase));
 }