System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.this C# (CSharp) Method

this() public method

Retrieves the child collection at the given index.
public this ( int index ) : DesignerOptionCollection
index int
return DesignerOptionCollection
            public DesignerOptionCollection this[int index]
            {
                [SuppressMessage("Microsoft.Globalization", "CA1303:DoNotPassLiteralsAsLocalizedParameters")]
                get
                {
                    EnsurePopulated();
                    if (index < 0 || index >= _children.Count)
                    {
                        throw new IndexOutOfRangeException(nameof(index));
                    }
                    return (DesignerOptionCollection)_children[index];
                }
            }

Same methods

DesignerOptionService.DesignerOptionCollection::this ( string name ) : DesignerOptionCollection
DesignerOptionService.DesignerOptionCollection::this ( int index ) : objectIList.System