Last active
August 29, 2015 14:09
-
-
Save bzuillsmith/c8affaebcb6fb10ee345 to your computer and use it in GitHub Desktop.
Odd VB error on RaisePropertyChanged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Private _selectedServerInstance As String | |
| Property SelectedServerInstance As String | |
| Get | |
| Return _selectedServerInstance | |
| End Get | |
| Set(value As String) | |
| _selectedServerInstance = value | |
| RaisePropertyChanged(Function() Me.SelectedServerInstance) | |
| End Set | |
| End Property | |
| // Looks ok until I build. The Error for each line with RaisePropertyChanged is: | |
| // error BC30518: Overload resolution failed because no accessible 'RaisePropertyChanged' can be called with these arguments: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment