Closed VBAndCs closed 2 years ago
Converter 5.0.2.5 fixes part of this. I no longer rename Value to Value1 but value is not renamed either. I do add Me. to value
I no longer rename Value to Value1 but value is not renamed either
VB can't accept value and Value as two differenr names. I recommend to rename value to _value, but be aware not to change Value param in the set blocks in properties.
@VBAndCs I think I have a complete fix in 5.0.2.6. posted tomorrow. If not please provide complete source of C# and VB where conversion does not work.
In this class I has a Value property:
The converter changed it's name to Value1:
I know you are trying to avoid confection with the value filed, but you can safely change the private field name. Changing the public property name Value to Value1 causes many errors, some of them can happen in reflection in frameworks that use naming convention. So, whenever the case conflict happens, change the private name not the public name. Thanks.