Files
Apr2020-Cpp2Il-Dump/System.Core/System/Linq/Expressions/SwitchCase.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x020000C2 RID: 194
[Token(Token = "0x20000C2")]
[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: 0x17000112 RID: 274
// (get) Token: 0x06000573 RID: 1395 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000112")]
public ReadOnlyCollection<Expression> TestValues
{
[Token(Token = "0x6000573")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
[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: 0x17000113 RID: 275
// (get) Token: 0x06000574 RID: 1396 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000113")]
public Expression Body
{
[Token(Token = "0x6000574")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
[CompilerGenerated]
get
{
return null;
}
}
}
}