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
worried-city-86458
04/20/2022, 7:17 PM
var thing = Output.Create("the value I got from somewhere");
d
damp-honey-93158
04/20/2022, 7:19 PM
much better. why do I make these things so hard? π thank you!
πimple_smile: 1
You just made my code a little bit cleaner. Thanks π