Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

48 lines
1.7 KiB
C#

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: 0x020000A5 RID: 165
[Token(Token = "0x20000A5")]
[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: 0x170000BD RID: 189
// (get) Token: 0x060004A9 RID: 1193 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000BD")]
public NewExpression NewExpression
{
[Token(Token = "0x60004A9")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
[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: 0x170000BE RID: 190
// (get) Token: 0x060004AA RID: 1194 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000BE")]
public ReadOnlyCollection<MemberBinding> Bindings
{
[Token(Token = "0x60004AA")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
[CompilerGenerated]
get
{
return null;
}
}
}
}