C#中的 Substring 问题在textbox1中输入了8位数字想在 textbox4中 显示8位数字的3、4位 需要如何 实现用Substring 么?? [解决办法]textbox4.Text = textbox1.Text.Substring(2,2);......