Files
Apr2020-Cpp2Il-Dump/System.Core/System/Linq/Expressions/RuntimeVariablesExpression.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

32 lines
1.0 KiB
C#

using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>An expression that provides runtime read/write permission for variables.</summary>
// Token: 0x020000BE RID: 190
[Token(Token = "0x20000BE")]
[DebuggerTypeProxy(typeof(Expression.RuntimeVariablesExpressionProxy))]
public sealed class RuntimeVariablesExpression : Expression
{
/// <summary>The variables or parameters to which to provide runtime access.</summary>
/// <returns>The read-only collection containing parameters that will be provided the runtime access.</returns>
// Token: 0x170000DD RID: 221
// (get) Token: 0x06000503 RID: 1283 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DD")]
public ReadOnlyCollection<ParameterExpression> Variables
{
[Token(Token = "0x6000503")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
[CompilerGenerated]
get
{
return null;
}
}
}
}