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

Contains() public method

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