46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Linq.Expressions
|
|
{
|
|
/// <summary>Represents a constructor call.</summary>
|
|
// Token: 0x020000C4 RID: 196
|
|
[Token(Token = "0x20000C4")]
|
|
[DebuggerTypeProxy(typeof(Expression.NewExpressionProxy))]
|
|
public class NewExpression : Expression
|
|
{
|
|
/// <summary>Gets the called constructor.</summary>
|
|
/// <returns>The <see cref="T:System.Reflection.ConstructorInfo" /> that represents the called constructor.</returns>
|
|
// Token: 0x170000F6 RID: 246
|
|
// (get) Token: 0x0600057F RID: 1407 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000F6")]
|
|
public ConstructorInfo Constructor
|
|
{
|
|
[Token(Token = "0x600057F")]
|
|
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000580 RID: 1408 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000580")]
|
|
[Address(RVA = "0x10D8A60", Offset = "0x10D7A60", VA = "0x1810D8A60", Slot = "10")]
|
|
public Expression GetArgument(int index)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0400022E RID: 558
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400022E")]
|
|
private IReadOnlyList<Expression> _arguments;
|
|
}
|
|
}
|