示例#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);