C#如何用重载编写拆分字符串的程序
C#如何用重载编写拆分字符串的程序,求指教
------解决方案--------------------什么意思? 学习!
------解决方案--------------------
楼主是不是这个意思
public static class temp
{
public static string substring(this string str, int newindex, int count)
{
string str_ = "";
for (int i =0; i<count&&i+newindex < str.Length; i++)
{
str_ += str[i + newindex].ToString();
}
return str_;
}
}
------解决方案--------------------重写方法就行了吧?