日期:2014-05-17 浏览次数:20992 次
static void Main(string[] args)
{
string result = 处理字符串("hello world hello world hello world hello world hello world hello world");
Console.WriteLine(result);
}
public static string 处理字符串(string str)
{
if (str.Length > 20)
{
return str.Substring(0, 20) + "...";
}
return str;
}