AsyncEx
AsyncEx copied to clipboard
Why does AsyncLazy.ConfigureAwait have EditorBrowsableState.Never?
Can I check the reason why the AsyncLazy.ConfigureAwait method has been hidden from intellisense?
Should we not be using .ConfigureAwait(false) when waiting on an AsyncLazy variable in library code?
Good point. I don't remember why that method has EditorBrowsableState, but I believe you are correct: it shouldn't be that way. Using ConfigureAwait(false) is fine with AsyncLazy<T>.