Table of Contents

Method Equals

Namespace
MailFathom.Domain.Emails
Assembly
MailFathom.Domain.dll

Equals(RemoteEmailKeywords?)

Reports whether two keyword sets hold the same keywords.

public bool Equals(RemoteEmailKeywords? other)

Parameters

other RemoteEmailKeywords

The set to compare with.

Returns

bool

true when both hold the same keywords.

Remarks

Written by hand because the compiler's own record equality compares Values by reference, which would make two sets built from one server answer unequal. The values are ordered and deduplicated on the way in, so comparing them in sequence is comparing the sets.