Functionname: foreach
Description: Foreach accepts an array of values. The foreach loops through each item in the array
Example:
In the example below we iterate through 3 example values
string[] example = {"example 1","example 2","example 3"};
foreach (string value in example)
{
Log(value);
}
Comments
0 comments
Please sign in to leave a comment.