Guest User

Untitled

a guest
Jul 11th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. namespace Problems
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5.  
  6. internal class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. var a = new
  11. {
  12. Data = new List<string> { "a", "b", "c" }.GetEnumerator()
  13. };
  14. while (a.Data.MoveNext())
  15. {
  16. Console.WriteLine(a.Data.Current);
  17. }
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment