Interface IConversionResult<T>
public interface IConversionResult<out T>
Type Parameters
T
Properties
IsSuccess
bool IsSuccess { get; }
Property Value
Type
ConversionResultType Type { get; }
Property Value
Value
T? Value { get; }
Property Value
- T
Methods
Map<U>(Func<T, U>)
IConversionResult<U> Map<U>(Func<out T, U> f)
Parameters
fFunc<T, U>
Returns
Type Parameters
U