-
Notifications
You must be signed in to change notification settings - Fork 12
Microsoft Mvvm Toolkit support #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 22.1.1
Are you sure you want to change the base?
Conversation
…ing] methods in addition to Raise* methods
…mentation is generated in parent class
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a deep review. I didn't check out this pull request.
DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/UnitTests.csproj
Outdated
Show resolved
Hide resolved
DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmToolkit/AttributeTransferTests.cs
Outdated
Show resolved
Hide resolved
DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmToolkit/NullableAnnotationTests.cs
Outdated
Show resolved
Hide resolved
.Append('(') | ||
.Append(propertyName) | ||
.Append("Chang") | ||
.Append(suffix) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a recommendation: Instead of a set of Append calls, make an extension method that accepts 'params string[]'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Append" calls are chained to avoid excessive memory traffci and improve performance. Correct approach is to use Interpolated String Handler available in C# 10. Probably somewhere in the future.
No description provided.