Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Program
  5. {
  6. public static void Main()
  7. {
  8. var noopList = new List<string>(0);
  9. noopList.Add("an item");
  10. Console.WriteLine(noopList[0]);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement