This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -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: 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;
}
}
}
}