创建一个线程

System.Threading.Thread thread = new System.Threading.Thread(() =>
{
commdbo.FilesHelper.delFile_Time(file_name, 30);
});
thread.IsBackground = true;
thread.Start();

posted on 2021-11-21 11:39  高达  阅读(28)  评论(0)    收藏  举报

导航