Closed elGuille-info closed 3 years ago
Hi Paul,
Incorrect constructor conversion:
public VentasPlayaWiz() : this(new MKNDatos.Reservas()) { }
Converts to:
Public Sub New() MyBase.New(New MKNDatos.Reservas) End Sub
But will be:
Public Sub New() Me.New(New MKNDatos.Reservas) End Sub
Hope its helps.
Guillermo
@elGuille-info Good catch it is fixed in converter version 5.0.1.16 that was just posted
Hi Paul,
Incorrect constructor conversion:
Converts to:
But will be:
Hope its helps.
Guillermo