Asynchronous Programming - System.Threading.Thread - Part 2

  • Thread
  • The Thread class was, originally, a 1:1 mapping to an operating system thread.
  • It is typically used for long-running or specialized work such as monitoring a device or executing code with a low priority.
  • Using the Thread class leaves us with a lot of control over the thread.
  • Thread Class
  • The Thread class is sealed
  • Creating and Starting a Thread
  •  

No comments:

Post a Comment

Framework Fundamentals - String - Comparing Strings

In comparing two values, the .NET Framework differentiates the concepts of equality comparison and order comparison . Equality compariso...