合并 System.Threading.Tasks.NET35
智能大石头 authored at 2023-03-16 23:32:48
345.00 B
X
namespace System.Threading.Tasks;

public struct ParallelLoopResult
{
	public long? LowestBreakIteration { get; private set; }

	public bool IsCompleted { get; private set; }

	internal ParallelLoopResult(long? lowest, bool isCompleted)
	{
		this = default(ParallelLoopResult);
		LowestBreakIteration = lowest;
		IsCompleted = isCompleted;
	}
}