Ejemplo n.º 1
0
        public bool Remove(IKeyframe item)
        {
            int index = GetIndexByFrame(item.Frame);

            if (index < 0)
            {
                return(false);
            }
            source.RemoveAt(index);
            return(true);
        }
Ejemplo n.º 2
0
 public void RemoveAt(int index)
 {
     source.RemoveAt(index);
 }