Api Sandbox Utility Parallel
class

Parallel

public static abstract sealed class Parallel

Wrappers of the parallel class.

Methods

static Boolean ForEach(IEnumerable<T> source, Action<T> body)
static Boolean ForEach(IEnumerable<T> source, CancellationToken token, Action<T> body)
static Boolean For(Int32 fromInclusive, Int32 toExclusive, Action<Int32> body)
static Task ForAsync(Int32 fromInclusive, Int32 toExclusive, CancellationToken token, Func<Int32, CancellationToken, ValueTask> body)
Assembly: Sandbox.Engine Namespace: Sandbox.Utility Full Name: Sandbox.Utility.Parallel