Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static method: void ThreadPool(Action)

  • Declared in: RT.Util.Ut

Declaration

public static void ThreadPool(
    Action task
)

Summary

Queues the specified action to be executed on the thread pool. This is just a shortcut for ThreadPool.QueueUserWorkItem, and also does not require the method to accept a parameter (which has been useless ever since C# gained support for lambdas).