Skip to content

Instantly share code, notes, and snippets.

@thallippoli
Created January 23, 2013 12:21
Show Gist options
  • Save thallippoli/4604971 to your computer and use it in GitHub Desktop.
Save thallippoli/4604971 to your computer and use it in GitHub Desktop.
// first column has the gamename, the second has the metascore
var scores = File.ReadAllLines( filename )
.Skip( 1 )
.Select( x => x.Split( ',' ) )
.Select( x => new { Game = x[ 0 ], Metascore = x[ 1 ] } );
foreach( var score in scores )
Debug.Log( score.Game + " : " + score.Metascore );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment