22 lines
569 B
C#
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: 0x02000388 RID: 904
|
|
[Token(Token = "0x2000388")]
|
|
public struct ParallelLoopResult
|
|
{
|
|
// Token: 0x04001270 RID: 4720
|
|
[FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x4001270")]
|
|
internal bool m_completed;
|
|
|
|
// Token: 0x04001271 RID: 4721
|
|
[FieldOffset(Offset = "0x8")]
|
|
[Token(Token = "0x4001271")]
|
|
internal long? m_lowestBreakIteration;
|
|
}
|
|
}
|