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

IndexOf() public méthode

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