System.Windows.Forms.ByteCollection.Contains C# (CSharp) Method

Contains() public method

Returns true, if the byte exists in the collection.
public Contains ( bool b ) : bool
b bool
return bool
        public bool Contains(bool b)
        {
            return InnerList.Contains(b);
        }