The event is created with the Custom modifier, as if it's in "property syntax", even though it's pasted in the "field syntax", thus breaking compilation.
Event args missing.
Handles clause missing.
Our version:
Public Class Car
Implements INotifyPropertyChanged
Public Custom Event PropertyChanged()
End Class
VS version:
Public Class Car
Implements INotifyPropertyChanged
Public Event PropertyChanged(ByVal sender As Object, ByVal e As System.ComponentModel.PropertyChangedEventArgs) Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
End Class
Description
There are phantom "handler methods" in the list.
The event is created with the Custom modifier, as if it's in "property syntax", even though it's pasted in the "field syntax", thus breaking compilation.
Event args missing.
Handles clause missing.
Our version:
Public Class Car
Implements INotifyPropertyChanged
Public Custom Event PropertyChanged()
End Class
VS version:
Public Class Car
Implements INotifyPropertyChanged
Public Event PropertyChanged(ByVal sender As Object, ByVal e As System.ComponentModel.PropertyChangedEventArgs) Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
End Class