Skip to content

Instantly share code, notes, and snippets.

@Collonville
Created December 11, 2015 18:33
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 Collonville/f274ff40c1ad52557de4 to your computer and use it in GitHub Desktop.
Save Collonville/f274ff40c1ad52557de4 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
List<int> foo = new List<int> { 6, 1, 4, 9, 2 }; //list
var boo = foo.Select(x => x * x); //power
boo.ToList().ForEach(x => Console.WriteLine(x)); //show
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment