我很困惑我写的代码没有做我想做的事情。
我的目标:删除字符串的最后一个字符(使用字符串生成器构建字符串)。
我的方法:
string toTrim = STR.ToString(); //here i have "INSERT INTO [dbo].[RCCMrec] ('ANI' , 'DNIS' , 'Date' , 'Time' , 'ConnId' , 'UUID' , 'EmployeeId' , 'AgentDN' , "
toTrim = toTrim.Remove(toTrim.Length - 1);
// here I STILL have "//here i have "INSERT INTO [dbo].[RCCMrec] ('ANI' , 'DNIS' , 'Date' , 'Time' , 'ConnId' , 'UUID' , 'EmployeeId' , 'AgentDN' , ""
我究竟做错了什么 ?