Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Matricies_Demo
- {
- class Program
- {
- static void Main()
- {
- List<string[]> tables = new List<string[]>();
- tables.Add(new string[] { "pepo", "gosho" });
- tables.Add(new string[] { "kiro", "mimi" });
- tables.Add(new string[] { "pepi", "kiki" });
- foreach(string[] row in tables)
- {
- Console.WriteLine(string.Join(" | ",row));
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment