NedyalkoKikov

Matricies-demo

Jun 2nd, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Matricies_Demo
  8. {
  9. class Program
  10. {
  11. static void Main()
  12. {
  13. List<string[]> tables = new List<string[]>();
  14. tables.Add(new string[] { "pepo", "gosho" });
  15. tables.Add(new string[] { "kiro", "mimi" });
  16. tables.Add(new string[] { "pepi", "kiki" });
  17. foreach(string[] row in tables)
  18. {
  19. Console.WriteLine(string.Join(" | ",row));
  20. }
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment