Nikon the Third

Results 8 comments of Nikon the Third

You can just use `ExceptionDispatchInfo` (more info [here](https://msdn.microsoft.com/en-us/library/system.runtime.exceptionservices.exceptiondispatchinfo(v=vs.110).aspx)), which supports capturing and re-throwing an exception, without using the `rethrow` IL opcode, which cannot be used in an async context. ```...

@knocte, I completely overread that. So yes, this is the same thing.

Experiencing the same problem, in V11 this worked, in V12 it results in this hard to track down `NullReferenceException`. As a workaround, we currently use the default GUID value for...

Thank you very much, we tested it and it appears the HotChocolate 11 behavior has been restored.

I think I just realized what's going on. Access control specifiers on type extensions have no effect whatsoever: **They belong on the defined member!** If you declare an extension member...

The behavior is even more surprising if we look at intrinsic and optional extensions side-by-side: ```fsharp module Test open System type MyException () = class end // Optional extension. type...

@TIHan interesting, your example is reported as an error in both VS & VS Code, while my example is reported only as a warning, and will run. ![error_warning](https://user-images.githubusercontent.com/15893812/45382104-92e04e00-b607-11e8-9f68-f9f4a5c6ff16.PNG)

While digging around a bit more, I just noticed this comment in the F# source code: [This helps the somewhat complicated type inference for AverageByNullable and SumByNullable, by making both...