Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created September 28, 2017 10:52
Show Gist options
  • Save NMZivkovic/2af501f452f5b1b50923536feb72e115 to your computer and use it in GitHub Desktop.
Save NMZivkovic/2af501f452f5b1b50923536feb72e115 to your computer and use it in GitHub Desktop.
var person = new Tuple<string, string, int>(
"Nikola", "Rubiks Code", 30);
Console.WriteLine("{0} has a blog called {1}, and he is {2} years old",
person.Item1, person.Item2, person.Item3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment