This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,28 @@
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
}
}