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: 0x020000A5 RID: 165 [Token(Token = "0x20000A5")] [DebuggerTypeProxy(typeof(Expression.MemberInitExpressionProxy))] public sealed class MemberInitExpression : Expression { /// Gets the expression that represents the constructor call. /// A that represents the constructor call. // 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; } } /// 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: 0x170000BE RID: 190 // (get) Token: 0x060004AA RID: 1194 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000BE")] public ReadOnlyCollection Bindings { [Token(Token = "0x60004AA")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] [CompilerGenerated] get { return null; } } } }