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: 0x020000BE RID: 190
[Token(Token = "0x20000BE")]
[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: 0x170000DD RID: 221
// (get) Token: 0x06000503 RID: 1283 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DD")]
public ReadOnlyCollection Variables
{
[Token(Token = "0x6000503")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
[CompilerGenerated]
get
{
return null;
}
}
}
}