[Mono-list] About killing a thread.

Gonzalo Paniagua Javier gonzalo@ximian.com
Tue, 16 Mar 2004 17:11:01 -0500


El lun, 15-03-2004 a las 16:00, Antonio Martínez Álvarez escribió:
> Hello.
> 
> How do I kill a thread?
> I have a thread which is always listing a tcp port (blocked), and I want
> it to termitate when the application exit.

Thread t = new Thread (blahblahblbha);
t.IsBackground = true;

-Gonzalo