Quick: can you spot what's wrong with this code? Thread thread = new Thread ( new ThreadStart (RunClock)); thread.Start(); ... private void RunClock() { while ( true ) { Clock.Text = DateTime .Now.ToLongTimeString(); } } The intent is to launch a thread
Read More...