Files
Apr2020-Cpp2Il-Dump/System.Core/System/Linq/Expressions/LoopExpression.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

63 lines
2.2 KiB
C#

using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents an infinite loop. It can be exited with "break".</summary>
// Token: 0x0200009E RID: 158
[Token(Token = "0x200009E")]
[DebuggerTypeProxy(typeof(Expression.LoopExpressionProxy))]
public sealed class LoopExpression : Expression
{
/// <summary>Gets the <see cref="T:System.Linq.Expressions.Expression" /> that is the body of the loop.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> that is the body of the loop.</returns>
// 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;
}
}
/// <summary>Gets the <see cref="T:System.Linq.Expressions.LabelTarget" /> that is used by the loop body as a break statement target.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.LabelTarget" /> that is used by the loop body as a break statement target.</returns>
// 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;
}
}
/// <summary>Gets the <see cref="T:System.Linq.Expressions.LabelTarget" /> that is used by the loop body as a continue statement target.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.LabelTarget" /> that is used by the loop body as a continue statement target.</returns>
// 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;
}
}
}
}