一道C#编程题,高手请进!在线等!

2024-11-07 23:30:48
推荐回答(4个)
回答1:

你可以换个思路, 先全部删除, 然后再添加"中华人民"四个字进LISTBOX

回答2:

string del="共和国";
string a = listBox1.Items[listBox1.SelectedIndex].ToString();
string b = a.Remove(a.IndexOf(del), del.Length);
listBox1.Items[listBox1.SelectedIndex] = b;

回答3:

string text=textbox.text.replace("共和国","");

回答4:

指导 listbox 对应项的 Text 重新赋值。