C# Start and Stop Thread inside SAME button click event
2017-2-23 · C# Start and Stop Thread inside SAME button click event. I am using C#,.Net4.0 and Visual Studio 2010 and I am trying to get this behaviour from my windows form application when the user click on a button: private void Btn_WebService_Click (object sender, EventArgs e) { Thread_Blink = new Thread ( () => { LED_Blink (LED.WS); }); Thread_Blink.
Get Price