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,45 @@
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.</summary>
// Token: 0x020000A1 RID: 161
[Token(Token = "0x20000A1")]
public abstract class MemberBinding
{
/// <summary>Gets the type of binding that is represented.</summary>
/// <returns>One of the <see cref="T:System.Linq.Expressions.MemberBindingType" /> values.</returns>
// Token: 0x170000B6 RID: 182
// (get) Token: 0x06000498 RID: 1176 RVA: 0x00002DF0 File Offset: 0x00000FF0
[Token(Token = "0x170000B6")]
public MemberBindingType BindingType
{
[Token(Token = "0x6000498")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")]
[CompilerGenerated]
get
{
return MemberBindingType.Assignment;
}
}
/// <summary>Gets the field or property to be initialized.</summary>
/// <returns>The <see cref="T:System.Reflection.MemberInfo" /> that represents the field or property to be initialized.</returns>
// Token: 0x170000B7 RID: 183
// (get) Token: 0x06000499 RID: 1177 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000B7")]
public MemberInfo Member
{
[Token(Token = "0x6000499")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
[CompilerGenerated]
get
{
return null;
}
}
}
}