//********************************************************************************************** // Copy //********************************************************************************************** public CircList <T> Copy() { var newList = new CircList <T>(list.Count) { listIdx = listIdx, usedItems = usedItems }; return(newList); }