LinqPad 6 Bug : Result of Async operation is null in watch
The result of an async operation is NULL according to Linqpad Watch and mouseover.
HOWEVER - the program continues executing with the real value underneath.
eg:
var b = await GetBoolTRUE()
// stopping debugger here shows b = null
if (b == true)
{
// this code executes
}
PS: The async method I'm calling is located in an imported DLL
2
votes
Martin Kirk
shared this idea