public bool Equals(CompositeFormatKey other) { return(OrdinalComparer.Equals(this.CompositeFormat, other.CompositeFormat)); }
public bool Equals(ValueAndSymbolFormatKey other) { return(OrdinalComparer.Equals(this.ValueFormat, other.ValueFormat) && OrdinalComparer.Equals(this.SymbolFormat, other.SymbolFormat)); }
public override Boolean Equals(Object?obj) => OrdinalComparer.Equals(this, obj as FileName);
public Boolean Equals(FileName?other) => OrdinalComparer.Equals(this, other);
public Boolean Equals(FileExtension?other) => OrdinalComparer.Equals(this, other);
public override Boolean Equals(Object?obj) => OrdinalComparer.Equals(this, obj as FileNameWithoutExtension);