EN
C#/.NET - thread example
8
points
To use threads in C#/.NET some basic knowledge could be useful.
Useful methods
Thread.Start
See for example here.Thread.Sleep
See for example here.Thread.Yield
See for example here.Thread.Join
See for example here.Thread.Interrupt
See for example here.Thread.Abort!!! - only for programmers who knows how it works
See here for example how to stop thread.
Useful properties
Note: check full list of constructors, methods and properties in official Microsoft documentation here.