Class Result.VectorResult
Represents the vector result.
public sealed class Result.VectorResult : Result
- Inheritance
-
Result.VectorResult
- Inherited Members
Constructors
VectorResult(VectorValue)
Initializes a new instance of the Result.VectorResult class.
public VectorResult(VectorValue vector)
Parameters
vector
VectorValueThe vector value.
Properties
Vector
Gets the vector value.
public override VectorValue Vector { 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 VectorValue(VectorResult)
Converts Result.VectorResult to VectorValue.
public static implicit operator VectorValue(Result.VectorResult vectorResult)
Parameters
vectorResult
Result.VectorResultThe vector result.
Returns
- VectorValue
The vector value.