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: 0x02000090 RID: 144
|
|
[Token(Token = "0x2000090")]
|
|
public enum GotoExpressionKind
|
|
{
|
|
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a jump to some location.</summary>
|
|
// Token: 0x040001D5 RID: 469
|
|
[Token(Token = "0x40001D5")]
|
|
Goto,
|
|
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a return statement.</summary>
|
|
// Token: 0x040001D6 RID: 470
|
|
[Token(Token = "0x40001D6")]
|
|
Return,
|
|
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a break statement.</summary>
|
|
// Token: 0x040001D7 RID: 471
|
|
[Token(Token = "0x40001D7")]
|
|
Break,
|
|
/// <summary>A <see cref="T:System.Linq.Expressions.GotoExpression" /> that represents a continue statement.</summary>
|
|
// Token: 0x040001D8 RID: 472
|
|
[Token(Token = "0x40001D8")]
|
|
Continue
|
|
}
|
|
}
|