Created
March 15, 2018 16:41
-
-
Save deanhume/69239ef2057ecd05ec423d8943f5e23c to your computer and use it in GitHub Desktop.
forloop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Loops through the loop until it reaches a count of 3000 | |
/// </summary> | |
public void ForLoop() | |
{ | |
List<string\> list = new List<string>(); | |
for (int i = 0; i < 3000; i++) | |
{ | |
list.Add("Test" \+ i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment