FormatterAssemblyStyle.Simple: Not So Simple?

We’re doing some work right now with persistance of object graphs into a SQL server image field using the BinaryFormatter. We’re using “simple” serialization, meaning we’re just marking our types with the SerializableAttribute and whatever transient fields shouldn’t be serialized we’re marking with NonSerializedAttribute. I realize that this problem could be solved if we go and implement ISerializable […]