Advertisement
AlexeySudakov

Untitled

Jul 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ///1.3.9.1
  2.  
  3. using System;
  4.  
  5. namespace homework
  6. {
  7. class Program
  8. {
  9. public static void Main(string[] args)
  10. {
  11. string[][] arr = new string[1][] ;
  12. arr [0] = new string[] {"1","2","3","4","5",};
  13. Console.WriteLine(arr[0].Length.ToString());
  14.  
  15. for (int i = 0; i<arr[0].Length; i++)
  16. {
  17. Console.WriteLine(arr[0][i]);
  18. }
  19. Console.ReadKey();
  20. }
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement