Files
27Aug2021-Cpp2IL-Dump/System.Core/System/Linq/Expressions/SwitchCase.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

48 lines
1.6 KiB
C#

using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents one case of a <see cref="T:System.Linq.Expressions.SwitchExpression" />.</summary>
// Token: 0x020000CD RID: 205
[Token(Token = "0x20000CD")]
[DebuggerTypeProxy(typeof(Expression.SwitchCaseProxy))]
public sealed class SwitchCase
{
/// <summary>Gets the values of this case. This case is selected for execution when the <see cref="P:System.Linq.Expressions.SwitchExpression.SwitchValue" /> matches any of these values.</summary>
/// <returns>The read-only collection of the values for this case block.</returns>
// Token: 0x17000137 RID: 311
// (get) Token: 0x0600060D RID: 1549 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000137")]
public ReadOnlyCollection<Expression> TestValues
{
[Token(Token = "0x600060D")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
[CompilerGenerated]
get
{
return null;
}
}
/// <summary>Gets the body of this case.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object that represents the body of the case block.</returns>
// Token: 0x17000138 RID: 312
// (get) Token: 0x0600060E RID: 1550 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000138")]
public Expression Body
{
[Token(Token = "0x600060E")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[CompilerGenerated]
get
{
return null;
}
}
}
}