スレッドを動的に作成しました。
static void Main(string[] args)
{
int ThreadCount =Convert.ToInt32ConfigurationManager.AppSettings["Threads"]);
List<Thread> th = new List<Thread>();
for (int i = 0; i < ThreadCount; i++)
{
Thread t = new Thread(print);
th.Add(t);
}
foreach (Thread t in th)
{
t.Start();
}
}
public static void print()
{
console.writeline("123");
}
このスレッドがいつ完了するか知りたいです。これらのスレッドの完了時に、「DONE」のメッセージを出力したい
これどうやってするの。