The following code is in C# and I want to convert it to VB.
How do I do it
Any help would be greatly appreciated
for (int IndexArray = Handling.Length-1; IndexArray %26gt;= 0;
IndexArray--)
//Code To Loop
How do you change For Loop from C# to VB?
For IndexArray as Integer = Handling.Length-1 to 0 step -1
' Code to Loop
Next
No comments:
Post a Comment