Mike Christiansen

Results 20 comments of Mike Christiansen

@sam-wheat - You are **almost certainly** running into [this issue](https://stackoverflow.com/a/24669638). If so, it's not an issue with `CommunityToolkit`, it's a problem with WPF. You can see from the [WPF source...

Side note, @sam-wheat - it's not **exactly** the ☝️ above issue. But, note the important part of what I have outlined above. **You can also see that for ButtonBase.CommandParameterProperty, there...

On the topic of `BitVector32`... With .NET 6 / C# 10, ["static abstract" interface members](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/tutorials/static-abstract-interface-methods) is in preview (should be non-preview with .NET 7) While you wouldn't be able to...

I think you're running into the same issue I did. You can see that the nuget package `MonoGame.Extended.Animations` is version 3.7.0 ([nuget.org](https://www.nuget.org/packages/MonoGame.Extended.Animations)), while the `MonoGame.Extended` package (and the rest of...

[@xoofx - PR submitted](https://github.com/scriban/scriban/pull/347)

@WimVergouwe - Can you give an example of what syntax you would like to see? It looks like `{{if !for.last; ','; end}}` is what you do now - what do...

I think that syntax results in `for` doing "too much". What do you think about a `string.join` function? ---- ``` foods = [ "apples", "bananas", "strawberries" ] foods | string.join...

(To be clear, I'm not the maintainer of this project, so, don't take my reluctance as the final word or anything) Here's what I think about your specific scenario (JSON...

I think this would be a breaking change for some people. Since a "member name" is really just a dictionary key, and dictionary keys can contain periods, we cannot assume...

This seems to already work. This template: ``` {{ a = [ 'a', 'b', 'c' ] b = [ 'd', 'e', 'f' ] c = a + b for item...