private void ThreadSubmit(string val){
.....
}
调用示例:
Thread thread = new Thread(() => ThreadSubmit("hello"));
thread.IsBackground = true;
thread.Start();
private void ThreadSubmit(string val){
.....
}
调用示例:
Thread thread = new Thread(() => ThreadSubmit("hello"));
thread.IsBackground = true;
thread.Start();