Example of a string List initialization in one line below
//Create list strCollection and assign string A, B, C & D to it! List<string> strCollection = new List<string>() { "A", "B", "C", "D" };
No comments:
Post a Comment