Created
February 7, 2015 04:17
-
-
Save scionwest/292575e5800fb8373a03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| StreamWriter singlePlayerOutputStream = null; | |
| if (singlePlayer) { | |
| Console.WriteLine (" midparse singlePlayer OK "); | |
| // setup an additional file for the singlePlayerAnalytics | |
| string singlePlayeroutputFileName = fileName + "." + map + "_"+singlePlayerID+".csv"; | |
| singlePlayerOutputStream = new StreamWriter (singlePlayeroutputFileName); | |
| //And write a header so you know what is what in the resulting file | |
| singlePlayeroutputStream.WriteLine (GenerateSinglePlayerCSVHeader ()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment