/// <summary> /// Compares this instance to another instance by comparing the name of the type. /// </summary> protected bool Equals(NamedType other) { return(string.Equals(Name, other.Name, StringComparison.InvariantCulture)); }