m
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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: 0x020000C9 RID: 201
|
||||
[Token(Token = "0x20000C9")]
|
||||
[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: 0x170000FD RID: 253
|
||||
// (get) Token: 0x0600058F RID: 1423 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000FD")]
|
||||
public ReadOnlyCollection<ParameterExpression> Variables
|
||||
{
|
||||
[Token(Token = "0x600058F")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user