Animatroller.Framework.Expander.ByteArrayRocks.IsEmptyLocate C# (CSharp) Метод

IsEmptyLocate() статический приватный Метод

static private IsEmptyLocate ( byte array, byte candidate, int offset, int size ) : bool
array byte
candidate byte
offset int
size int
Результат bool
        static bool IsEmptyLocate(byte[] array, byte[] candidate, int offset, int size)
        {
            return array == null
                || candidate == null
                || size == 0
                || candidate.Length == 0
                || candidate.Length > (size + offset);
        }