Class ExpressionTree<T>
Represents an expression tree containing an expression.
Inheritance
System.Object
ExpressionTree<T>
Inherited Members
Namespace: System.Linq.Expressions
Assembly: Nuqleon.Linq.CompilerServices.dll
Syntax
public class ExpressionTree<T> : ExpressionTree, ITree<ExpressionTreeNode>, ITree, IEquatable<ExpressionTreeBase>, ITyped where T : Expression
Type Parameters
Name | Description |
---|---|
T | Type of the expression. This type has to derive from Expression. |
Properties
Expression
Gets the expression contained in the expression tree.
Declaration
public T Expression { get; }
Property Value
Type | Description |
---|---|
T |
Implements
System.IEquatable<>