Thread t = new Thread(() =>
{
while (true)
{
Console.WriteLine(DateTime.Now);
Thread.Sleep(1000);
}
}
);
t.Start();
reference : http://diditwith.net/2007/02/09/WhatsInAClosure.aspx
package bruce.lib.swing; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.A...
Thread t = new Thread(() =>
{
while (true)
{
Console.WriteLine(DateTime.Now);
Thread.Sleep(1000);
}
}
);
t.Start();
reference : http://diditwith.net/2007/02/09/WhatsInAClosure.aspx