This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,25 @@
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;
}
}