Csharp - Remove last comma - C# 如何移除最後一個符號 (分號)?

解決方法十分簡單 我們可以使用 C# remove last comma (string.TrimEnd)  這個功能來解決這個問題

E.G.

string y = "1,2,3,4,5,6,";
Console.WriteLine(y.TrimEnd(','));

Hope you find it useful

Chi Yau
Chi Yau
Software Engineer

Interested on Learning new stuff and experience sharing