c#中的[Required]代表什么,为什么要加[]啊?
发布网友
发布时间:2022-05-21 08:59
我来回答
共3个回答
热心网友
时间:2023-10-21 14:30
C# 除了属性之外,还有1个特性。
热心网友
时间:2023-10-21 14:30
一般这样使用:
delegate void AddListBox(string strThreadName);
private void Add(string strThreadName)
{
if (InvokeRequired)
{
AddListBox alb = new AddListBox(Add);
this.Invoke(alb, strThreadName);
return;
}
listBox1.Items.Add(strThreadName);
}
热心网友
时间:2023-10-21 14:31
网页链接这个问题以后看到的人可以去看看,完美解决这个疑惑