Exemplo n.º 1
0
        public Lots <T> Difference(Lots <T> item)
        {
            Lots <T> ts = new Lots <T>(list);

            foreach (var i in item.list)
            {
                ts.Remove(i);
            }
            return(ts);
        }