using System; using System.Diagnostics; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Linq.Expressions { /// Represents an infinite loop. It can be exited with "break". // Token: 0x0200009E RID: 158 [Token(Token = "0x200009E")] [DebuggerTypeProxy(typeof(Expression.LoopExpressionProxy))] public sealed class LoopExpression : Expression { /// Gets the that is the body of the loop. /// The that is the body of the loop. // Token: 0x170000B2 RID: 178 // (get) Token: 0x06000494 RID: 1172 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000B2")] public Expression Body { [Token(Token = "0x6000494")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] [CompilerGenerated] get { return null; } } /// Gets the that is used by the loop body as a break statement target. /// The that is used by the loop body as a break statement target. // Token: 0x170000B3 RID: 179 // (get) Token: 0x06000495 RID: 1173 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000B3")] public LabelTarget BreakLabel { [Token(Token = "0x6000495")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] [CompilerGenerated] get { return null; } } /// Gets the that is used by the loop body as a continue statement target. /// The that is used by the loop body as a continue statement target. // Token: 0x170000B4 RID: 180 // (get) Token: 0x06000496 RID: 1174 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000B4")] public LabelTarget ContinueLabel { [Token(Token = "0x6000496")] [Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")] [CompilerGenerated] get { return null; } } } }