Files
Aug2021-Cpp2IL-Dump/System.Core/System/Linq/Expressions/GotoExpressionKind.cs
T
2026-04-10 22:50:51 +02:00

29 lines
1.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Specifies what kind of jump this <see cref="T:System.Linq.Expressions.GotoExpression" /> represents.</summary>
// Token: 0x0200008B RID: 139
[Token(Token = "0x200008B")]
public enum GotoExpressionKind
{
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a jump to some location.</summary>
// Token: 0x040001A5 RID: 421
[Token(Token = "0x40001A5")]
Goto,
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a return statement.</summary>
// Token: 0x040001A6 RID: 422
[Token(Token = "0x40001A6")]
Return,
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a break statement.</summary>
// Token: 0x040001A7 RID: 423
[Token(Token = "0x40001A7")]
Break,
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a continue statement.</summary>
// Token: 0x040001A8 RID: 424
[Token(Token = "0x40001A8")]
Continue
}
}