Bob Frankston
Bob Frankston
How was this resolved?
First, thanks for all your effort. Converting old code to async can be messy so I don’t have any particular advice. It’s just the C# will complain about things like...
One quick thought on LINQ – a #pragma – like declaration globally or at the query. This can be a way to add knowledge. Bob Frankston https://Frankston.com From: Bob Frankston...
My use case is doing my own projects which have evolved over 20 years. The async was added in a shift from using threads and when it worked well-enough I...
LINQ expressions are parsed with no semantics. It’s 100% up to the particular implementation to decide, at runtime, what to do. In fact some databases are case sensitive and some...
Just an FYI I looked into how to return a null task object to keep VB happy Return Task.FromResult(Of Object)(Nothing) Bob Frankston https://Frankston.com From: Bob Frankston Sent: Sunday, June 2,...
OK, I couldn’t resist. Converting sloppy (Je ne sais pas pourquoi) asynchronous code is scary. I used threading rather than callbacks in the early days for the same reason that...
As an FYI – I had to revert. For some reason the WebSocket wasn’t working right and I haven’t had a chance to track it down. I’ve got a lot...
The positive side is that I’m finally getting my act together and trying to master async in C# which has for more mechanism that JavaScript. As to the conversion –...
Thanks. I did a quick but didn't find it in a quick look. But I can wait for the UX upgrade As an FYI I did ctrl-shift-p settings and looked...