public bool Equals(SourceFileBase other)
 {
     return(other != null && string.Equals(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase));
 }
 public bool Equals(SourceFileBase other)
 {
     return other != null && string.Equals(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase);
 }
 public int CompareTo(SourceFileBase other)
 {
     return(string.Compare(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase));
 }
 public int CompareTo(SourceFileBase other)
 {
     return string.Compare(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase);
 }