Catrobat.IDE.Core.UI.NullItemCollection.RemoveAt C# (CSharp) Метод

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

public RemoveAt ( int index ) : void
index int
Результат void
    public void RemoveAt(int index)
    {
      if(index == 0)
        throw new Exception("Cannot remove null object");
      else
        SourceCollection.RemoveAt(index - 1);
    }