Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 21, 2014 18:54
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 devdays/bad15262ad8c59b44d7f to your computer and use it in GitHub Desktop.
Save devdays/bad15262ad8c59b44d7f to your computer and use it in GitHub Desktop.
Snippet - C# loop
int[] fibarray = new int[] { 0, 1, 1, 2, 3, 5, 8, 13 };
foreach (int element in fibarray) {
System.Console.WriteLine(element);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment