2
C # não pode tornar o tipo `notull 'nulo
Estou tentando criar um tipo semelhante ao de Rust Resultou Haskell Eithere cheguei até aqui: public struct Result<TResult, TError> where TResult : notnull where TError : notnull { private readonly OneOf<TResult, TError> Value; public Result(TResult result) => Value = result; public Result(TError error) => Value = error; public static implicit …