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