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: 0x020000C2 RID: 194 [Token(Token = "0x20000C2")] [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: 0x17000112 RID: 274 // (get) Token: 0x06000573 RID: 1395 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000112")] public ReadOnlyCollection TestValues { [Token(Token = "0x6000573")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] [CompilerGenerated] get { return null; } } /// Gets the body of this case. /// The object that represents the body of the case block. // 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; } } } }