23 lines
951 B
C#
23 lines
951 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Indicates whether a method in Visual Basic is marked with the <see langword="Iterator" /> modifier.</summary>
|
|
// Token: 0x0200055F RID: 1375
|
|
[Token(Token = "0x200055F")]
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
[Serializable]
|
|
public sealed class IteratorStateMachineAttribute : StateMachineAttribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IteratorStateMachineAttribute" /> class.</summary>
|
|
/// <param name="stateMachineType">The type object for the underlying state machine type that's used to implement a state machine method.</param>
|
|
// Token: 0x06002C41 RID: 11329 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002C41")]
|
|
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
|
|
public IteratorStateMachineAttribute(Type stateMachineType)
|
|
{
|
|
}
|
|
}
|
|
}
|