Class Result<T>
Represents the result of an operation that returns a value.
Inherited Members
Namespace: SimpleResults
Assembly: SimpleResults.dll
Syntax
public sealed class Result<T> : ResultBase
Type Parameters
| Name | Description |
|---|---|
| T | A value associated to the result. |
Constructors
| Name | Description |
|---|---|
| Result() | Initializes a new instance of the Result<T> class. |
Properties
| Name | Description |
|---|---|
| Data | Gets the data associated with the result. |
Operators
| Name | Description |
|---|---|
| Implicit(T to Result<T>) | Converts the value of type |
| Implicit(Result to Result<T>) | |
| Implicit(Result<T> to T) | Converts an instance of type Result<T> to the value of type |