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);
        }