示例#1
0
        /// <summary>
        /// Compare two files by bytes - returns true if match found
        /// </summary>
        /// <param name="file1"></param>
        /// <param name="file2"></param>
        /// <returns></returns>
        public static bool FileCompare_Bytes(this string file1, string file2)
        {
            _AHK ahk = new _AHK();

            return(ahk.FileCompare_Bytes(file1, file2));
        }