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