Skip to content

Instantly share code, notes, and snippets.

@ipvalverde
Created September 30, 2018 21:19
Show Gist options
  • Select an option

  • Save ipvalverde/6bacb22660b531eafa19b5042cb0b1ba to your computer and use it in GitHub Desktop.

Select an option

Save ipvalverde/6bacb22660b531eafa19b5042cb0b1ba to your computer and use it in GitHub Desktop.
Read Console string converting to int array
int[] ar = Console.ReadLine()
.Split(' ')
.Where(token => !string.IsNullOrWhiteSpace(token))
.Select(token => Convert.ToInt32(token))
.ToArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment