NickRedwood

Results 10 comments of NickRedwood

I've added the cancellation token registrations as you've suggested and they don't trigger at all, even the one in line one of `GenerateNumberLinesAsync`. This is true both with and without...

I added a `TraceListener` on the client rpc and got interesting results. - First case (take 5 items, then cancel), with token passed into `InvokeWithCancellationAsync` _not_ also passed into `result.GetAsyncEnumerator`,...

FYI for anyone with this issue, the way to work around this is: On the receiver side, wire up the `IAsyncEnumerable` returned so that it `Finally` triggers cancellation of a...

For a long time I didn't realise that the problems I had with many of my inheritance/interface heirarchies nearly always came back to this common problem - the lack of...

I was thinking of custom enums. Possible to use strings of course and just return an error if an incorrect string is used, but an enum with intellisense/tooltip would be...

I regularly get this error too, seems to be more common with a complex workbook so possibly a time-out? I used inspect element and get the following screen, let me...

I also find Excel Labs can spend a long time on 'Loading data from your workbook' before it fails. Also, if I click in a cell while it's doing this,...

As I'm sure you know the RX namespaces have changed in version 3.0.0. Are there any plans to update this project to use those? Thanks for the great library btw.

Can definitely understand the desire to pursue more interesting work! I can only imagine how much time just the versioning, supporting different frameworks and packaging (inc. Nuget) would take. The...

Thanks, that's a clever workaround - even if a little hacky it's better than my `Nullable` solution I think. A `TrySolve` type of method would work well in future though.