摘要:
public static string Reverse(string str){ if (string.IsNullOrEmpty(str)) { throw new ArgumentException("参数不合法"); } StringBuilder sb = new StringBuilder(str.Length); for (int index = str.Length - 1; index >= 0; index--) { sb.Append(str[index]); } return sb.ToString();}public static strin 阅读全文
2011年4月7日 #