Exemplo n.º 1
0
 /// <inheritdoc />
 public bool Equals(FormattingArguments other)
 {
     if (Format != other.Format)
     {
         return(false);
     }
     if (FormatProvider is null)
     {
         return(other.FormatProvider is null);
     }
     return(FormatProvider.Equals(other.FormatProvider));
 }