gerhard17
gerhard17
I often came to the point wanting a project wide type alias: `using xxx = sometype;` This desire was mainly driven by library development purposes, not by usage aspects. A...
I understand that the language should provide language constructs which are executable at runtime and do not throw unneccessary exceptions. But I do not agree that constraints must not contain...
I read these discussions and understand the problem. But to my opinion it is an unsatisfactory solution bejond preview stage.
@CyrusNajmabadi As an example: Code which implements the strategy pattern. In this case a generic strategy, which works on different types implementing `INumber`. ``` interface INumber { //static abstract members...
Maybe the proposal can clarify, where the runtime error is raised now and where the compiler error will be raised in future.
Thanks for your clarification. No need to answer the runtime exception question. That's clear for me now. I see no direct problem now. ~~But I will think about it...~~ I'm...
I have a similar problem: Having a special Hosting-Assembly (AnyCPU) which can load and start either a 32- or 64-bit host process (exe). These two host processes are referenced by...
@rainersigwald Thank you for your input! Your idea is good, but i didn't achieve to get the hosting assemblies automatically get copied over into dependent projects. But i will hold...