This message was deleted.
# dotnet
s
This message was deleted.
t
t
Hmmm... Why are we attributing it with
MaybeNull
? I'm reading this as "even though I'm passing in a non-null value, a null value may be returned". Why isn't this sufficient?
Copy code
public static Output<T> Create<T>(T value) => Create(Task.FromResult(value));