+ 1
Is it possible to handle threads in c# if it is possible can someone write me a code to start and kill threads in c#
c# starting and killing threads
2 ответов
+ 2
do not use threads, use timers, they are way better. and starting them is simple, after defining it you just go my_timer.start(). check out the msdn documentation, it is always sypported by examples
+ 1
thanks paul