Omar
❔ How do I Open Source Software correctly?
I'm worried that I don't know how to OSS correctly.
How do I choose a library? I want to write C# code that controls and monitors Docker containers. How do I find a good, supported library that does it?
I searched around and found this one: https://www.nuget.org/packages/Docker.DotNet/ Where do I find documentation for this library? There's a README, but it's incomplete, just some examples; covers about 10% of the library, I figure. How do I learn more?
33 replies
any benefit to async?
What's the benefit of async code? I see lots of examples that
await
on all the async calls. A prominent example at hand is the XmlReader
example here: https://learn.microsoft.com/en-us/dotnet/api/system.xml.xmlreader?redirectedfrom=MSDN&view=net-6.0
Since every call to ReadAsyc() is going to block on await, then what's the point of using async reads?114 replies