public bool Equals(IIrcConfig other) { return(IrcConfigHelpers.Equals(this, other)); }
/// <summary> /// Sees if the given object is equal to this instance. /// That is, all properties match. /// </summary> /// <param name="obj">The object to check.</param> /// <returns>True if the given object is equal to this one, else false.</returns> public override bool Equals(object obj) { return(IrcConfigHelpers.Equals(this, obj)); }