Why can’t I create a simple WPF string data binding in my class?
Error: Overload resolution failed because no accessible ‘New’ accepts this number of arguments.
I’ve followed this example in MSDN.
Dim s As String = "Test string"
Dim b As New Binding("Description of bind")
b.Mode = BindingMode.OneTime
b.Source = s
I’m not familiar with VB but it would appear the line should read:
I referred to this link.