initialize a string int list in c# code example
Example: c# list string initialize inline
List<string> games = new List<string>() { "Doom", "Tetris", "City of Heroes" }
List<string> games = new List<string>() { "Doom", "Tetris", "City of Heroes" }