Should classes from the same namespace be kept in the same assembly?
- by Dan Rasmussen
For example, ISerializable and the Serializable Attribute are both in the System.Runtime.Serialization namespace, but not the assembly of the same name. On the other hand, DataContract attributes are in the namespace/assembly System.Runtime.Serialization.
This causes confusion when a class can have using System.Runtime.Serialization but still not…