public bool Equals(QueuedNpmCommandInfo other) {
     return null != other && StringComparer.CurrentCulture.Compare(ToString(), other.ToString()) == 0;
 }
Example #2
0
 public bool Equals(QueuedNpmCommandInfo other)
 {
     return(StringComparer.CurrentCulture.Equals(this.ToString(), other?.ToString()));
 }
 public bool Equals(QueuedNpmCommandInfo other)
 {
     return(null != other && StringComparer.CurrentCulture.Compare(ToString(), other.ToString()) == 0);
 }