.Net
Question about ValueTask / ValueTask<T>
Recently read articles about it: https://devblogs.microsoft.com/dotnet/understanding-the-whys-whats-and-whens-of-valuetask/ https://blog.marcgravell.com/2019/08/prefer-valuetask-to-task-always-and.html Both of the articles says that Do not await ValueTask multiple times. Do not await ValueTask concurrently. Let’s say I have a Web API that has a singleton Read more…