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

IndexOf() public method

Returns the numerical index of the given value.
public IndexOf ( DesignerOptionCollection value ) : int
value DesignerOptionCollection
return int
            public int IndexOf(DesignerOptionCollection value)
            {
                EnsurePopulated();
                return _children.IndexOf(value);
            }