Exemple #1
0
 public bool Equals(IMetadataInformation other)
 {
     return(object.ReferenceEquals(this, other));
 }
Exemple #2
0
 public bool Equals(IMetadataInformation other) =>
 StringComparer.Ordinal.Equals(this.UniqueName, other.UniqueName);
Exemple #3
0
 public int CompareTo(IMetadataInformation other)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public int CompareTo(IMetadataInformation other) =>
 StringComparer.Ordinal.Compare(this.UniqueName, other.UniqueName);