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