public AutoSortList(AutoSortList <T> list)
 {
     this.container = new List <T>(list.container);
     comparison     = list.comparison;
 }