26 lines
921 B
C#
26 lines
921 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading.Tasks
|
|
{
|
|
/// <summary>Enables iterations of parallel loops to interact with other iterations. An instance of this class is provided by the <see cref="T:System.Threading.Tasks.Parallel" /> class to each loop; you can not create instances in your code.</summary>
|
|
// Token: 0x02000384 RID: 900
|
|
[Token(Token = "0x2000384")]
|
|
[DebuggerDisplay("ShouldExitCurrentIteration = {ShouldExitCurrentIteration}")]
|
|
public class ParallelLoopState
|
|
{
|
|
// Token: 0x060020F4 RID: 8436 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60020F4")]
|
|
[Address(RVA = "0x493D90", Offset = "0x492D90", VA = "0x180493D90")]
|
|
internal ParallelLoopState(ParallelLoopStateFlags fbase)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04001266 RID: 4710
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4001266")]
|
|
private ParallelLoopStateFlags m_flagsBase;
|
|
}
|
|
}
|