예제 #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return(((FullPath != null ? FullPath.ToLower().GetHashCode() : 0) * 397) ^ LastWriteDateTimeUtc.GetHashCode());
     }
 }
예제 #2
0
 protected bool Equals(MarkupFile other)
 {
     return(string.Equals(FullPath, other.FullPath, StringComparison.CurrentCultureIgnoreCase) && LastWriteDateTimeUtc.Equals(other.LastWriteDateTimeUtc));
 }