in src/cs/Microsoft.PhoneticMatching/Matchers/BaseMatcher.cs [85:97]
public bool Equals(Target<T> x, Target<T> y)
{
if (x == null && y == null)
{
return true;
}
else if (x == null || y == null)
{
return false;
}
return string.Equals(x.Phrase, y.Phrase) && int.Equals(x.Id, y.Id);
}