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