using System; using Cpp2IlInjected; namespace System.Linq.Expressions { /// Specifies what kind of jump this represents. // Token: 0x02000090 RID: 144 [Token(Token = "0x2000090")] public enum GotoExpressionKind { /// A that represents a jump to some location. // Token: 0x040001D5 RID: 469 [Token(Token = "0x40001D5")] Goto, /// A that represents a return statement. // Token: 0x040001D6 RID: 470 [Token(Token = "0x40001D6")] Return, /// A that represents a break statement. // Token: 0x040001D7 RID: 471 [Token(Token = "0x40001D7")] Break, /// A that represents a continue statement. // Token: 0x040001D8 RID: 472 [Token(Token = "0x40001D8")] Continue } }