コード例 #1
0
 public bool Equals(CompositeFormatKey other)
 {
     return(OrdinalComparer.Equals(this.CompositeFormat, other.CompositeFormat));
 }
コード例 #2
0
 public bool Equals(ValueAndSymbolFormatKey other)
 {
     return(OrdinalComparer.Equals(this.ValueFormat, other.ValueFormat) &&
            OrdinalComparer.Equals(this.SymbolFormat, other.SymbolFormat));
 }
コード例 #3
0
 public override Boolean Equals(Object?obj) => OrdinalComparer.Equals(this, obj as FileName);
コード例 #4
0
 public Boolean Equals(FileName?other) => OrdinalComparer.Equals(this, other);
コード例 #5
0
 public Boolean Equals(FileExtension?other) => OrdinalComparer.Equals(this, other);
コード例 #6
0
 public override Boolean Equals(Object?obj) => OrdinalComparer.Equals(this, obj as FileNameWithoutExtension);