Esempio n. 1
0
 public bool Equals(SourceFileBase other)
 {
     return(other != null && string.Equals(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase));
 }
Esempio n. 2
0
 public bool Equals(SourceFileBase other)
 {
     return other != null && string.Equals(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase);
 }
Esempio n. 3
0
 public int CompareTo(SourceFileBase other)
 {
     return(string.Compare(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase));
 }
Esempio n. 4
0
 public int CompareTo(SourceFileBase other)
 {
     return string.Compare(this.FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase);
 }