Jon Skeet
Jon Skeet
Fire-and-forget calls are precisely the problem here - because it sounds like that's basically not supported without a leak. The client needs to "fire, wait, and tidy-up" otherwise they'll get...
> If you want to have fire-and-forget, and the server could run for a very long time, and you want to guarantee there isn't a leak, the solution is to...
Just to check, do you mean as per https://github.com/googleapis/google-cloudevents/blob/main/docs/spec/pubsub.md?
Okay. As a maintainer of both the Google.Cloud.PubSub.V1 library (which we'd presumably want to depend on) as well as the CloudEvents SDK, I'm in a good position to look at...
As no-one's mentioned this yet: this is particularly important for switch expressions. Consider this existing code: ```csharp public int Foo(int input) { switch (input) { case 0: case 1: return...
@Lifeburner: Those operators don't work to compose patterns, and couldn't do so without more work, as per Neal's `if (myBool is true || false)` example. Fundamentally this is composing patterns...
(It sounds like @gafter has found more issues though...)
Okay, so just to check, is the ball now in @Nigel-Ecma's court to validate the grammar and update the validator?
Roslyn crash reported as https://github.com/dotnet/msbuild/issues/11168
Can we make the verify test ignore the .github directory?