コード例 #1
0
        public bool Equals(FileFingerprint other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(string.Equals(FullFilePath, other.FullFilePath, StringComparison.OrdinalIgnoreCase) &&
                   LastModifiedUtc.Equals(other.LastModifiedUtc) &&
                   Fingerprint.Equals(other.Fingerprint));
        }
コード例 #2
0
ファイル: FileRef.cs プロジェクト: grappachu/apps.movideo
 public bool Equals(FileRef other)
 {
     return(string.Equals(Path, other.Path) && LastModifiedUtc.Equals(other.LastModifiedUtc) &&
            Bytes == other.Bytes);
 }