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: 0x020000AA RID: 170
|
|
[Token(Token = "0x20000AA")]
|
|
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: 0x170000D5 RID: 213
|
|
// (get) Token: 0x06000523 RID: 1315 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000D5")]
|
|
public Expression Expression
|
|
{
|
|
[Token(Token = "0x6000523")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000205 RID: 517
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4000205")]
|
|
private readonly Expression _expression;
|
|
}
|
|
}
|