This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,47 @@
using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents calling a constructor and initializing one or more members of the new object.</summary>
// Token: 0x020000B0 RID: 176
[Token(Token = "0x20000B0")]
[DebuggerTypeProxy(typeof(Expression.MemberInitExpressionProxy))]
public sealed class MemberInitExpression : Expression
{
/// <summary>Gets the expression that represents the constructor call.</summary>
/// <returns>A <see cref="T:System.Linq.Expressions.NewExpression" /> that represents the constructor call.</returns>
// Token: 0x170000DD RID: 221
// (get) Token: 0x06000535 RID: 1333 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DD")]
public NewExpression NewExpression
{
[Token(Token = "0x6000535")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
[CompilerGenerated]
get
{
return null;
}
}
/// <summary>Gets the bindings that describe how to initialize the members of the newly created object.</summary>
/// <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Linq.Expressions.MemberBinding" /> objects which describe how to initialize the members.</returns>
// Token: 0x170000DE RID: 222
// (get) Token: 0x06000536 RID: 1334 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DE")]
public ReadOnlyCollection<MemberBinding> Bindings
{
[Token(Token = "0x6000536")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[CompilerGenerated]
get
{
return null;
}
}
}
}