public static string CalculateFileMD5Hash(string filePath) { Int64 byteCount; string hash; LocalDataStorage.GetFileSizeAndHash(filePath, out byteCount, out hash); return(hash); }