Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# loop array back

string[] arr = new string[5];
for (int a = arr.Length; --a >= 0;)
{
  // ...
}
 
PREVIOUS NEXT
Tagged: #loop #array
ADD COMMENT
Topic
Name
2+7 =