(Apologies for the long setup. There is a question in here, I promise.)
Consider a class Node that has an immutable unique ID that is assigned at construction time. This ID is used for serialization when persisting the object graph, among other things. For example, when an object is deserialized, it gets tested against the main object graph by ID to look for a collision and reject it.
Also, a Node is only instantiated by a private system, and all public accesses to them are done via the INode interface.
So we have something like this common pattern:
interface INode
{
NodeID ID { get; }
// ... other awesome stuff
}
class Node : INode
{
readonly NodeID _id = NodeID.CreateNew();
NodeID INode.ID { get { return _id; } }
// ... implement other awesome stuff
public override bool Equals(object obj)
{
var node = obj as INode;
return ReferenceEquals(node, null) ? false : _id.Equals(node.ID);
}
public override int GetHashCode()
{
return _id.GetHashCode();
}
}
My questions are around these comparison/equality-related features of .NET:
IEquatable<T>IComparable/IComparable<T>operator ==/operator !=
Here are the questions, finally. When implementing a class like Node:
- Which of the above interfaces/operators do you implement as well? Why?
- Do you extend
IEquatable<T>fromINodeorNode? Given thatIEquatable<T>only seems to get used (mostly in the BCL) through runtime type checks, is there a point to/not to extend fromINode? - For those that you do implement, do you do them just on the class itself, or do you additionally do it on the ID as well?
- For example, is
IEquatable<NodeID>also a part of theNode? - Do you test for
obj as NodeIDinEquals?
- For example, is
After working in C# for over a decade, I'm embarrassed not to have a thorough understanding of these interfaces and best practices related to them.
(Note that our .NET systems are built in 95% C#, 5% C++/CLI, 0% VB (if it makes a difference).)