System.Windows.Forms.ByteCollection.Contains C# (CSharp) Méthode

Contains() public méthode

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