using System; using System.Collections.ObjectModel; using System.Diagnostics; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Linq.Expressions { /// An expression that provides runtime read/write permission for variables. // Token: 0x020000C9 RID: 201 [Token(Token = "0x20000C9")] [DebuggerTypeProxy(typeof(Expression.RuntimeVariablesExpressionProxy))] public sealed class RuntimeVariablesExpression : Expression { /// The variables or parameters to which to provide runtime access. /// The read-only collection containing parameters that will be provided the runtime access. // Token: 0x170000FD RID: 253 // (get) Token: 0x0600058F RID: 1423 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000FD")] public ReadOnlyCollection Variables { [Token(Token = "0x600058F")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] [CompilerGenerated] get { return null; } } } }