Example #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
        }
Example #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
        }
 public static byte[] Concat(byte[] first, byte[] second)
 {
     //return NeoVMArrayUtil.concat(first, second);
     return(NetCoreArrayUtil.concat(first, second));
 }
 public static bool AreEqual(byte[] first, byte[] second)
 {
     //return NeoVMArrayUtil.concat(first, second);
     return(NetCoreArrayUtil.AreEqual(first, second));
 }