private void LinkButton2_Click(object sender, System.EventArgs e)
{   foreach(ListItem item in this.ListBox1.Items)
{
this.ListBox2.Items.Add(item);
this.ListBox1.Items.Clear();
}
}调试出错
而且我的项目中莫名其妙的出现了什么反汇编的一项
不知道怎么删除它
怎么办?