oh dear
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents an initializer for a single element of an <see cref="T:System.Collections.IEnumerable" /> collection.</summary>
|
||||
// Token: 0x02000086 RID: 134
|
||||
[Token(Token = "0x2000086")]
|
||||
public sealed class ElementInit : IArgumentProvider
|
||||
{
|
||||
/// <summary>Gets the instance method that is used to add an element to an <see cref="T:System.Collections.IEnumerable" /> collection.</summary>
|
||||
/// <returns>A <see cref="T:System.Reflection.MethodInfo" /> that represents an instance method that adds an element to a collection.</returns>
|
||||
// Token: 0x17000081 RID: 129
|
||||
// (get) Token: 0x0600037D RID: 893 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000081")]
|
||||
public MethodInfo AddMethod
|
||||
{
|
||||
[Token(Token = "0x600037D")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of arguments that are passed to a method that adds an element to an <see cref="T:System.Collections.IEnumerable" /> collection.</summary>
|
||||
/// <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Linq.Expressions.Expression" /> objects that represent the arguments for a method that adds an element to a collection.</returns>
|
||||
// Token: 0x17000082 RID: 130
|
||||
// (get) Token: 0x0600037E RID: 894 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000082")]
|
||||
public ReadOnlyCollection<Expression> Arguments
|
||||
{
|
||||
[Token(Token = "0x600037E")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600037F RID: 895 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600037F")]
|
||||
[Address(RVA = "0x53C550", Offset = "0x53B350", VA = "0x18053C550", Slot = "4")]
|
||||
public Expression GetArgument(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000083 RID: 131
|
||||
// (get) Token: 0x06000380 RID: 896 RVA: 0x00002BB0 File Offset: 0x00000DB0
|
||||
[Token(Token = "0x17000083")]
|
||||
public int ArgumentCount
|
||||
{
|
||||
[Token(Token = "0x6000380")]
|
||||
[Address(RVA = "0x53C5B0", Offset = "0x53B3B0", VA = "0x18053C5B0", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user