Cole Tobin
Cole Tobin
It seems the "can return `false`" is a Windows-ism. [The Unix implementation](https://github.com/dotnet/runtime/blob/v8.0.0/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/Process.Unix.cs#L367-L487) (i.e. anything that isn't Windows) will always return `true`. These Windows-isms are all too common in the documentation,...
Still broken on 11.0.5. I also can't create a `LinearGradientBrush2` object anymore, as the constructor of `GradientBrush` is now internal for some reason. Regression from 11.0-preview1 (https://github.com/AvaloniaUI/Avalonia/issues/8266#issuecomment-1233308761 - the opacity...
I figured I'd check back now, as it's still broken on 11.0.10, and I can't even implement `IBrush` as it's annotated with `NotClientImplementable`. 
@maxkatz6 Why is this not planned? Is it not possible to fix in X11 or Wayland?
> You haven't said a single word about why this would be useful. And you haven't given any concrete examples in real code either. I, personally, like the idea of...
So, the idea is, should I consume a DLL with obsolete members, that I can swap out a dynamically invoked DLL with a newer version, but I wouldn’t be able...
Could `OverloadResolutionPriorityAttribute` itself be marked with the new `ExperimentalAttribute`? This would require users to acknowledge awareness of said “can of worms”.
That syntax looks a bit weird. If an "or overwrite" operation was added, I'd prefer to augment the `with` syntax: ```cs IDictionary d = GetDictionary(); (string k, string v) =...
Well, it's the same thing for lists and arrays. I can also currently do: ```cs new() {1, 2, 3} // generates whatever collection target type is new[] {1, 2, 3}...
I do not like this. In my opinion, the team's obsession with using contextual keywords instead of breaking syntax is wrong. It causes sharp edges (`nameof(int)` just flat-out doesn't work,...