Forgive the total newbie question... is it really ...
# general
d
Forgive the total newbie question... is it really true, that to set the value of an Output<string> in C# to a constant value, I need to do something like this: Output<string> thing = Output<string>.Create(Task.FromResult("the value I got from somewhere"));
w
Copy code
var thing = Output.Create("the value I got from somewhere");
d
much better. why do I make these things so hard? 😉 thank you!
simple smile 1
You just made my code a little bit cleaner. Thanks 🙂
w