using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Represents calling a constructor and initializing one or more members of the new object.
// Token: 0x020000B0 RID: 176
[Token(Token = "0x20000B0")]
[DebuggerTypeProxy(typeof(Expression.MemberInitExpressionProxy))]
public sealed class MemberInitExpression : Expression
{
/// Gets the expression that represents the constructor call.
/// A that represents the constructor call.
// 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;
}
}
/// Gets the bindings that describe how to initialize the members of the newly created object.
/// A of objects which describe how to initialize the members.
// Token: 0x170000DE RID: 222
// (get) Token: 0x06000536 RID: 1334 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DE")]
public ReadOnlyCollection Bindings
{
[Token(Token = "0x6000536")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[CompilerGenerated]
get
{
return null;
}
}
}
}