Skip to content

Instantly share code, notes, and snippets.

@deanhume
Created March 15, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deanhume/69239ef2057ecd05ec423d8943f5e23c to your computer and use it in GitHub Desktop.
Save deanhume/69239ef2057ecd05ec423d8943f5e23c to your computer and use it in GitHub Desktop.
forloop
/// <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