BraintreeEncryption.Library.BouncyCastle.Util.Arrays.AreEqual C# (CSharp) Method

AreEqual() public static method

public static AreEqual ( bool a, bool b ) : bool
a bool
b bool
return bool
        public static bool AreEqual(
			bool[]  a,
			bool[]  b)
        {
            if (a == b)
                return true;

            if (a == null || b == null)
                return false;

            return HaveSameContents(a, b);
        }

Same methods

Arrays::AreEqual ( byte a, byte b ) : bool
Arrays::AreEqual ( char a, char b ) : bool
Arrays::AreEqual ( int a, int b ) : bool