using System; using System.Collections.ObjectModel; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Linq.Expressions { /// Represents a control expression that handles multiple selections by passing control to . // Token: 0x020000C3 RID: 195 [Token(Token = "0x20000C3")] [DebuggerTypeProxy(typeof(Expression.SwitchExpressionProxy))] public sealed class SwitchExpression : Expression { /// Gets the test for the switch. /// The object representing the test for the switch. // Token: 0x17000114 RID: 276 // (get) Token: 0x06000575 RID: 1397 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000114")] public Expression SwitchValue { [Token(Token = "0x6000575")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] [CompilerGenerated] get { return null; } } /// Gets the collection of objects for the switch. /// The collection of objects. // Token: 0x17000115 RID: 277 // (get) Token: 0x06000576 RID: 1398 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000115")] public ReadOnlyCollection Cases { [Token(Token = "0x6000576")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] [CompilerGenerated] get { return null; } } /// Gets the test for the switch. /// The object representing the test for the switch. // Token: 0x17000116 RID: 278 // (get) Token: 0x06000577 RID: 1399 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000116")] public Expression DefaultBody { [Token(Token = "0x6000577")] [Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")] [CompilerGenerated] get { return null; } } /// Gets the equality comparison method, if any. /// The object representing the equality comparison method. // Token: 0x17000117 RID: 279 // (get) Token: 0x06000578 RID: 1400 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000117")] public MethodInfo Comparison { [Token(Token = "0x6000578")] [Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")] [CompilerGenerated] get { return null; } } } }