Thread t = new Thread(() =>
{
while (true)
{
Console.WriteLine(DateTime.Now);
Thread.Sleep(1000);
}
}
);
t.Start();
reference : http://diditwith.net/2007/02/09/WhatsInAClosure.aspx
import java.io.File; import java.io.FileNotFoundException; import net.sourceforge.barbecue.Barcode; import net.sourceforge.barbecue.Barcode...
Thread t = new Thread(() =>
{
while (true)
{
Console.WriteLine(DateTime.Now);
Thread.Sleep(1000);
}
}
);
t.Start();
reference : http://diditwith.net/2007/02/09/WhatsInAClosure.aspx