Sergio Pedri

Results 266 comments of Sergio Pedri

Closing this, as exceptions can now be configured to be rethrown, via the new option added in the PR linked above.

```csharp [ObservableProperty(new(), true)] ``` Is not valid C# syntax. Either way, this is not something we're planning on looking into right now, to avoid making the attributes too complicated and...

Closing this, as we don't plan on adding snippets for the MVVM Toolkit. As has been mentioned already, we provide source generators to help removing boilerplate and verbosity 🙂

The switch for `INotifyPropertyChanging` has been added in #48, closing this. We can open separate issues to track potential future switches individually.

UWP is most definitely still a thing (and will always be), but whether you want to dedicate time investigating and fixing this depends on your support policy I think. Personally,...

Just wanted to mention — I'm in the Microsoft Store team, so if anyone here (from GitHub/MSFT, eg. @niik or someone else) maintaining the repo has any questions or anything,...

Wondering if this could also give us some size savings in CsWinRT. Eg. we have a few branches on this there ([example](https://github.com/microsoft/CsWinRT/blob/1ed334cce33fd04ab56babb80c27494823d722ab/src/WinRT.Runtime/Marshalers.cs#L2134-L2147)): ![image](https://github.com/dotnet/runtime/assets/10199417/7643ba7b-46aa-4e9e-90fe-cdb933f21fb8)

The methods are supposed to still be there, but it seems https://github.com/CommunityToolkit/dotnet/commit/224b3342e5baf006844ebee9304385d641565e4e broke the binding for LINQ extensions due to the second `IEnumerable` implementation being present on those grouped collection...

Yeah that `ToSpanAndClear()` is not safe. If you clear the builder, the array is returned to the pool, so another thread might concurrently rent the same array and write random...

Duplicate of #643 or #158 I think? Are you using packages.config, by any chance? If not, is all your code in the same project as your app, and are you...