Result<T> struct Result<T> Documentation Code public T Value { get; } public static Result<T> Error(string message) public static Result<T> op_Implicit(T value) public static Result<T> op_Implicit(string value) public static Result<T> Success(T value) public bool IsError(out string message) public bool IsSuccess(out T value)