Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# loop backwards

string[] arr = new string[5];
for (int a = arr.Length; --a >= 0;)
{
  // ...
}
Source by nullorempty.org #
 
PREVIOUS NEXT
Tagged: #loop
ADD COMMENT
Topic
Name
8+4 =