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

this() public method

Gets or sets the element at the specified index. In C#, this property is the indexer for the PropertySpecCollection class.
public this ( int index ) : PropertySpec
index int The zero-based index of the element to get or set.
return PropertySpec
            public PropertySpec this[int index]
            {
                get { return (PropertySpec)innerArray[index]; }
                set { innerArray[index] = value; }
            }

Same methods

PropertyBag.PropertySpecCollection::this ( int index ) : objectIList.System