using System.Collections.Generic;
First = new List<int>() { 1, 2, 3 };
Second = new List<int>() { 4, 5, 6 };
All = new List<IList<int>>() { First, Second };
public List<IList<int>> All { get; private set; }
public IList<int> First { get; set; }
public IList<int> Second { get; set; }
static void Main(string[] args)
tmp.Second = new List<int>(tmp.Second.Reverse());
private static void PrintList<T>(IList<T> list)
Console.WriteLine("__________");