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: 0x02000368 RID: 872
|
|
[Token(Token = "0x2000368")]
|
|
[DebuggerDisplay("ShouldExitCurrentIteration = {ShouldExitCurrentIteration}")]
|
|
public class ParallelLoopState
|
|
{
|
|
// Token: 0x06001EE8 RID: 7912 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001EE8")]
|
|
[Address(RVA = "0x3FFB80", Offset = "0x3FE980", VA = "0x1803FFB80")]
|
|
internal ParallelLoopState(ParallelLoopStateFlags fbase)
|
|
{
|
|
}
|
|
|
|
// Token: 0x040011A3 RID: 4515
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40011A3")]
|
|
private ParallelLoopStateFlags m_flagsBase;
|
|
}
|
|
}
|