BlueSky.Model.VirtualListDynamic.RemoveAt C# (CSharp) Метод

RemoveAt() публичный Метод

public RemoveAt ( int fIndex ) : void
fIndex int
Результат void
        public virtual void RemoveAt(int fIndex)
        {
            //21Jan2014 object j = dictIndex.ElementAt(fIndex).Key;
            dict.Remove(fIndex);
            dictIndex.Remove(fIndex);
            RecordCount -= 1;
            RaiseListChanged(new ListChangedEventArgs(ListChangedType.ItemDeleted, fIndex, fIndex));
            //throw new NotImplementedException();
        }