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

Contains() public method

Determines whether a PropertySpec is in the PropertySpecCollection.
public Contains ( PropertySpec item ) : bool
item PropertySpec The PropertySpec to locate in the PropertySpecCollection. The element to locate /// can be a null reference (Nothing in Visual Basic).
return bool
            public bool Contains(PropertySpec item)
            {
                return innerArray.Contains(item);
            }

Same methods

PropertyBag.PropertySpecCollection::Contains ( string name ) : bool