Igor Bagdamyan
Igor Bagdamyan
@CyrusNajmabadi ```csharp public class ArrayWrapperBuilder { // This works public static ArrayWrapper Create(ReadOnlySpan values) { return new(values.ToArray()); } // I want this to work instead. Array is already a creatable...
I really wonder how this can be properly done without runtime support. For example: ```csharp public void Do(Dictionary dict) where T : ISomeInterface1 where U : ISomeInterface2 { typeof(T/U) //...
[1; x] feels like a (personally) long awaited pattern matching on non const values rather that x being a declared variable here. Also, as stated above it's already a feature...
I guess it's worth mentioning that Termital.Gui has it's own SynchronizationContext and it really depends on how this task is started. (Note: SynchronizationContext is just an abstraction over some kind...
I don't think this should be rider feature instead of compiler feature. E.g. things like that should be consistent across all ides. It's not a refactoring feature, it's more of...
I think it would be good to have different `ref T` and `T*` overloads, former being "safer oner". I understand that basically once you go into gpu land there is...
@dorgrin6 What do you mean by supporting Python? There could be multiple things: 1) Running python based apps natively like with Node support? 2) ServiceDiscovery package for Python? 3) A...
@olahallvall Hi, Ola! I have the same requirement. Old service, sync, bugs, sadness. Have you solved this problem? If yes, is the prototype you've shared the final solution? Or did...
@olahallvall Thank you
Simple "todo" might be a good name too and it matches with what ide usually look for in comments