public bool Remove(IKeyframe item) { int index = GetIndexByFrame(item.Frame); if (index < 0) { return(false); } source.RemoveAt(index); return(true); }
public void RemoveAt(int index) { source.RemoveAt(index); }