AnimatGuiCtrls.Controls.PropertyBag.PropertySpecCollection.RemoveAt C# (CSharp) Method

RemoveAt() public method

Removes the object at the specified index of the PropertySpecCollection.
public RemoveAt ( int index ) : void
index int The zero-based index of the element to remove.
return void
            public void RemoveAt(int index)
            {
                innerArray.RemoveAt(index);
            }