Animatroller.Framework.Expander.ByteArrayRocks.Locate C# (CSharp) Method

Locate() public static method

public static Locate ( this self, byte candidate, int offset ) : int
self this
candidate byte
offset int
return int
        public static int Locate(this byte[] self, byte[] candidate, int offset = 0)
        {
            return Locate(self, candidate, self.Length, offset);
        }

Same methods

ByteArrayRocks::Locate ( this self, byte candidate, int size, int offset ) : int