-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Remove mvvmlight dependency #504
base: master
Are you sure you want to change the base?
Conversation
[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", | ||
Justification = "The this keyword is used in the Silverlight version")] | ||
[SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate", | ||
Justification = "This cannot be an event")] |
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.
❔ Are these still needed?
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.
WOW you are so fast to react 💨
Good point @sharwell I will have a second 👁👁 on it
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.
✅ Removed
public virtual void Cleanup() | ||
{ | ||
} |
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.
❔ Is this used?
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.
Yeah this is used!
|
||
protected void RaisePropertyChanged([CallerMemberName] string propertyName = null) | ||
{ | ||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); |
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.
💡 If this is called a large number of times, consider caching the PropertyChangedEventArgs
instances in a concurrent dictionary.
1f51c25
to
74d3e15
Compare
No description provided.