29 lines
1.0 KiB
C#
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
|
|
}
|
|
}
|