I have the following code:
await _user?.DisposeAsync();
Visual Studio
highlights this code, saying 'Possible NullReferenceException'
by the way, without await
Visual Studio
doesn't show this warning
Why NullReferenceException
is possible here?