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: 0x020000B9 RID: 185
|
|
[Token(Token = "0x20000B9")]
|
|
[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: 0x170000D6 RID: 214
|
|
// (get) Token: 0x060004F3 RID: 1267 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000D6")]
|
|
public ConstructorInfo Constructor
|
|
{
|
|
[Token(Token = "0x60004F3")]
|
|
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060004F4 RID: 1268 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004F4")]
|
|
[Address(RVA = "0x6BBE10", Offset = "0x6BAC10", VA = "0x1806BBE10", Slot = "10")]
|
|
public Expression GetArgument(int index)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x040001EF RID: 495
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40001EF")]
|
|
private IReadOnlyList<Expression> _arguments;
|
|
}
|
|
}
|