Dump() result does not appear in Result Pane when called from a Timer?
Can you explain why the following Dump() statement does not show the result in the Result Pane? (I am using Linqpad 5.0)
void Main()
{
Foo();
}
void Foo()
{
new Timer (_ => "Foo".Dump(), null, 3000, -1);
}
void Main()
{
Foo();
}
void Foo()
{
new Timer (_ => "Foo".Dump(), null, 3000, -1);
}
Comments