Class UnaryOperator<T>
Represents a unary (prefix or postfix) operator with a given precedence.
Inheritance
- object
- UnaryOperator<T>
Inherited Members
- object.GetType()
- object.ToString()
- object.Equals(object)
- object.Equals(object, object)
- object.ReferenceEquals(object, object)
- object.GetHashCode()
Declaration
public sealed class UnaryOperator<T>
Type Parameters
Name | Description |
---|---|
T |
The type of annotations in the docuemnt. |
Methods
Apply(Expression<T>)
Creates an Expression<T> representing
this operator applied to the expression
.
Declaration
public Expression<T> Apply(Expression<T> expression)
Parameters
Type | Name | Description |
---|---|---|
Expression<T> |
expression |
The expression to apply this operator to. |
Returns
Type | Description |
---|---|
Expression<T> |
An Expression<T> representing
this operator applied to the |