I'm looking at hashing an object model, based on a serialization of it.
If I serialize an object graph using the .NET BinaryFormatter, is the serialized representation guaranteed to be the exact same, byte for byte, for another object graph where all the involved objects are composed of the same values?
Intuitively, I'd think so, but I'm unsure if object/reference IDs might somehow influence the actual serialized representation.
Thanks in advance.