当前位置:编程学习 > C#/ASP.NET >>

请教各位专家!!!

用c#怎么把TEXTBOX里输入的数字在checkedlistbox里显示相应数目的语句"未知端口"我现在急死拉,在线等 --------------------编程问答-------------------- 不知所云 --------------------编程问答--------------------
private void button1_Click(object sender, EventArgs e)
        {
            int m = 0;
            int.TryParse(this.textBox1.Text, out m);
            this.checkedListBox1.Items.Clear();
            for (int i = 0; i < m; i++)
            {
                this.checkedListBox1.Items.Add("未知端口");
            }
        }
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,