32 lines
977 B
C#
32 lines
977 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Linq.Expressions
|
|
{
|
|
/// <summary>Represents assignment operation for a field or property of an object.</summary>
|
|
// Token: 0x0200009F RID: 159
|
|
[Token(Token = "0x200009F")]
|
|
public sealed class MemberAssignment : MemberBinding
|
|
{
|
|
/// <summary>Gets the expression to assign to the field or property.</summary>
|
|
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> that represents the value to assign to the field or property.</returns>
|
|
// Token: 0x170000B5 RID: 181
|
|
// (get) Token: 0x06000497 RID: 1175 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000B5")]
|
|
public Expression Expression
|
|
{
|
|
[Token(Token = "0x6000497")]
|
|
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040001C6 RID: 454
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x40001C6")]
|
|
private readonly Expression _expression;
|
|
}
|
|
}
|