Skip to content

Instantly share code, notes, and snippets.

@bzuillsmith
Last active August 29, 2015 14:09
Show Gist options
  • Save bzuillsmith/c8affaebcb6fb10ee345 to your computer and use it in GitHub Desktop.
Save bzuillsmith/c8affaebcb6fb10ee345 to your computer and use it in GitHub Desktop.
Odd VB error on RaisePropertyChanged
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