R
R.A.
private void ArchiveTimer_Elapsed(object sender,
System.Timers.ElapsedEventArgs e)
{
Thread thethread = new Thread (new ThreadStart
(processFile.ClearArchiveFilesThreadProc));
thethread.Start ();
}
Is this code ok, or will there be some issues after ArchiveTimer_Elapsed
function goes out of scope?
Thanks
System.Timers.ElapsedEventArgs e)
{
Thread thethread = new Thread (new ThreadStart
(processFile.ClearArchiveFilesThreadProc));
thethread.Start ();
}
Is this code ok, or will there be some issues after ArchiveTimer_Elapsed
function goes out of scope?
Thanks