public static int Find(this byte[] array, int offset, int count, byte[] other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     return(ByteArrayExtensions.Find(array, offset, count, other, 0, other.Length));
 }