示例#1
0
        public static bool AreEqual(byte[] first, byte[] second)
        {
#if NET_CORE
            return(NetCoreArrayUtil.AreEqual(first, second));
#endif
#if NEO
            return(NeoVMArrayUtil.AreEqual(first, second));
#endif
        }
示例#2
0
        public static byte[] Concat(byte[] first, byte[] second)
        {
#if NET_CORE
            return(NetCoreArrayUtil.concat(first, second));
#endif
#if NEO
            return(NeoVMArrayUtil.concat(first, second));
#endif
        }