在C#中,Trim和TrimEnd都是字符串處理方法,用于去除字符串的空格或指定字符。
string str = " hello world ";
string trimmedStr = str.Trim();
Console.WriteLine(trimmedStr); // Output: "hello world"
string str = "hello world ";
string trimmedStr = str.TrimEnd();
Console.WriteLine(trimmedStr); // Output: "hello world"
因此,Trim方法會去除字符串的開頭和結尾的空格或指定字符,TrimEnd方法只會去除字符串結尾的空格或指定字符。