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

IndexOf() public method

Returns the index of the given byte.
public IndexOf ( byte b ) : int
b byte
return int
        public int IndexOf(byte b)
        {
            return InnerList.IndexOf(b);
        }