计算器的退格怎么用C#中的string来实现比如String test="123456";然后按“←”键test="12345";请问怎么实现[解决办法]if (test.Length > 0)test = test.Remove(test.Length - 1, 1);