<PackageReference Include="System.Threading.Thread" Version="4.0.0-beta-22416" />

Thread

public sealed class Thread
public static Thread CurrentThread { get; }

public bool IsAlive { get; }

public bool IsBackground { get; set; }

public int ManagedThreadId { get; }

public string Name { get; set; }

public ThreadState ThreadState { get; }

public Thread(ThreadStart start)

public static void Sleep(int millisecondsTimeout)

public static void Sleep(TimeSpan timeout)

public void Join()

public bool Join(int millisecondsTimeout)

public void Start()

public void Start(object parameter)