Files
Apr2020-Cpp2Il-Dump/System.Core/System/Linq/Expressions/DefaultExpression.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

61 lines
2.2 KiB
C#

using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents the default value of a type or an empty expression.</summary>
// Token: 0x02000085 RID: 133
[Token(Token = "0x2000085")]
[DebuggerTypeProxy(typeof(Expression.DefaultExpressionProxy))]
public sealed class DefaultExpression : Expression
{
// Token: 0x06000379 RID: 889 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000379")]
[Address(RVA = "0x53C4D0", Offset = "0x53B2D0", VA = "0x18053C4D0")]
internal DefaultExpression(Type type)
{
}
/// <summary>Gets the static type of the expression that this <see cref="T:System.Linq.Expressions.Expression" /> represents.</summary>
/// <returns>The <see cref="P:System.Linq.Expressions.DefaultExpression.Type" /> that represents the static type of the expression.</returns>
// Token: 0x1700007F RID: 127
// (get) Token: 0x0600037A RID: 890 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700007F")]
public sealed override Type Type
{
[Token(Token = "0x600037A")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "5")]
[CompilerGenerated]
get
{
return null;
}
}
/// <summary>Returns the node type of this expression. Extension nodes should return <see cref="F:System.Linq.Expressions.ExpressionType.Extension" /> when overriding this method.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> of the expression.</returns>
// Token: 0x17000080 RID: 128
// (get) Token: 0x0600037B RID: 891 RVA: 0x00002B98 File Offset: 0x00000D98
[Token(Token = "0x17000080")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x600037B")]
[Address(RVA = "0x53C540", Offset = "0x53B340", VA = "0x18053C540", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
// Token: 0x0600037C RID: 892 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600037C")]
[Address(RVA = "0x53C4A0", Offset = "0x53B2A0", VA = "0x18053C4A0", Slot = "9")]
protected internal override Expression Accept(ExpressionVisitor visitor)
{
return null;
}
}
}