-
Notifications
You must be signed in to change notification settings - Fork 238
C# -> VB error with step <0 #798
Copy link
Copy link
Closed
Labels
C# -> VBSpecific to C# -> VB conversionSpecific to C# -> VB conversiongood first issuehelp wantedoutput logic errorA bug where the converted output behaves differently to the input codeA bug where the converted output behaves differently to the input code
Metadata
Metadata
Assignees
Labels
C# -> VBSpecific to C# -> VB conversionSpecific to C# -> VB conversiongood first issuehelp wantedoutput logic errorA bug where the converted output behaves differently to the input codeA bug where the converted output behaves differently to the input code
Type
Fields
Give feedbackNo fields configured for issues without a type.
CodeC#:
for (int m=nbMessage;m>0;m--)
CodeConverter:
For m As Integer = nbMessage To 0 + 1
Code VBNET
For m As Integer = nbMessage To 1 Step -1
Marc