Christer van der Meeren

Results 247 issues of Christer van der Meeren

First, thanks for yet another useful library. Seems to work wonderfully, and really simplifies triggering INPC with calculated properties. While my preferred method so far is PropertyChanged.Fody (due to being...

You include a Scrutinizer code quality badge in the readme. Is there any reason why Scrutinizer is not used for more than code quality? Coverage, CI, etc. Is everything else...

If I'm too quick in creating a new tab after FF starts, and then move away from it, it disappears from my current tab group - but neither is it...

3rd party or builtin interfaces may have methods requiring several arguments (e.g. `Xamarin.Forms.IValueConverter`, which defines `Convert` and `ConvertBack` with four arguments each). In these cases, CleanCode should not warn that...

The following code gives a "Condition expression too complex" warning: MyFoo.MyEvent += (sender, args) => { bar = true; baz = false; }; There is no warning if the lambda...

This has been mentioned a few times, e.g. https://github.com/GuillaumeSalles/redux.NET/issues/51#issuecomment-289406335. Just creating this separately for the record, so it's not forgotten. :)

help wanted

I'm working on a quick PR to add an `ActionDispatched` event to `IStore` and `Store`. I figured this was orthogonal to everything else on the store, and the intention was...

This is a work in progress. Posting here as a PR so we can discuss. Particularly interested in what @dcolthorp has to say. Regarding https://github.com/GuillaumeSalles/redux.NET/issues/47#issuecomment-290694783, this PR provides a way...

Since `Store` is a low-level API, we should be able to override its members. I've made PR #61 for this. I came across the need for overriding `InnerDispatch` when trying...