System.Windows.Forms.ByteCollection.IndexOf C# (CSharp) 메소드

IndexOf() 공개 메소드

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