This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using Cpp2IlInjected;
namespace System.Threading.Tasks
{
/// <summary>Provides completion status on the execution of a <see cref="T:System.Threading.Tasks.Parallel" /> loop.</summary>
// Token: 0x0200036C RID: 876
[Token(Token = "0x200036C")]
public struct ParallelLoopResult
{
// Token: 0x040011AD RID: 4525
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x40011AD")]
internal bool m_completed;
// Token: 0x040011AE RID: 4526
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x40011AE")]
internal long? m_lowestBreakIteration;
}
}