-
Notifications
You must be signed in to change notification settings - Fork 232
Open
Labels
VB -> C#Specific to VB -> C# conversionSpecific to VB -> C# conversion
Description
VB.Net input code
Col("foo") = MyEnum.Value1Erroneous output
Col("foo") == (MyType)MyEnum.Value1Expected output
Col("foo") == (MyType)(int)MyEnum.Value1Details
- Product in use: codeconv 10.0
VB.NET implicitly uses the Integer Values of Enums, while C# does not.
Like in #1211 I'm not sure if this is something the converter should handle or another case for a custom step for our codebase.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
VB -> C#Specific to VB -> C# conversionSpecific to VB -> C# conversion