Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 349 Bytes

PH_P003.md

File metadata and controls

13 lines (8 loc) · 349 Bytes

PH_P003 - Discouraged Thread Method

Problem

The use of the following methods is discouraged:

  • System.Threading.Thread.Abort()
  • System.Threading.Thread.Suspend()
  • System.Threading.Thread.Resume()

Solution

There are alternatives whose use should be preferred. For example, use cancellation tokens instead of the thread abortion.