Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

22 lines
569 B
C#

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;
}
}