Closed Sergio0694 closed 1 year ago
Using [RelayCommand] with partial methods incorrectly marks them as being overloads, and emits an error.
[RelayCommand]
No.
[RelayCommand] private partial void Foo(); private partial void Foo() { } private partial void Bar(); [RelayCommand] private partial void Bar() { }
The code should compile just fine.
Describe the bug
Using
[RelayCommand]
with partial methods incorrectly marks them as being overloads, and emits an error.Regression
No.
Steps to reproduce
Expected behavior
The code should compile just fine.