Skip to content

Instantly share code, notes, and snippets.

View icodeintx's full-sized avatar
🏠
Working from home

Scott Durrett icodeintx

🏠
Working from home
View GitHub Profile
//Implement IEquatable<> interface and have these methods below
public bool Equals(User other)
{
return IsEqual(other);
}
public override bool Equals(Object obj)
{