Class Result.LambdaResult
Represents the lambda result.
public sealed class Result.LambdaResult : Result
- Inheritance
-
Result.LambdaResult
- Inherited Members
Constructors
LambdaResult(Lambda)
Initializes a new instance of the Result.LambdaResult class.
public LambdaResult(Lambda lambda)
Parameters
lambda
LambdaThe lambda value.
Properties
Lambda
Gets the lambda value.
public override Lambda Lambda { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
Operators
implicit operator Lambda(LambdaResult)
Converts Result.LambdaResult to Lambda.
public static implicit operator Lambda(Result.LambdaResult lambdaResult)
Parameters
lambdaResult
Result.LambdaResultThe lambda result.
Returns
- Lambda
The lambda.