System.Windows.Forms.ByteCollection.Contains C# (CSharp) Метод

Contains() публичный Метод

Returns true, if the byte exists in the collection.
public Contains ( bool b ) : bool
b bool
Результат bool
        public bool Contains(bool b)
        {
            return InnerList.Contains(b);
        }