Diff<>(old, new, comparer, predicate, postProcessor) NewArray<>(size1, size2, size3, initialiser) RunMain(main, onUnhandledMain, onUnhandledThread) RunMain(main, onUnhandledMain, onUnhandledThread)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Static method: void ThreadPool(Action)Declarationpublic 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). |