This question is locked. New answers and comments are not allowed.
I tried to convert a VB class to C# and the converter failed with this error:
Thanks!
CONVERSION ERROR: Code could not be converted. Details:-- line 113 col 16: "Get" expectedLine 113 is the start of a new property, just after an auto implemented property. Below is an example.
' auto implemented propertyPublic Property ParentBind() As System.Windows.Forms.BindingSource' below is line 113Public Property ChildBinds() As System.Collections.Generic.Dictionary(Of String, System.Windows.Forms.BindingSource) Get Return _ChildBinds End Get Set(ByVal value As System.Collections.Generic.Dictionary(Of String, System.Windows.Forms.BindingSource) _ChildBinds = value End SetEnd PropertyThanks!