I am working on a ASP.NET application that has a class that inherits a List of a Custom Object.
public class UserRoleList : List { publ
Like so:
[Serializable] public class UserRoleList : List { public UserRoleList() { } }
(Note the 'Serializble' tag will need to be on all classes that need to be serialised (so the parent as well.
And then use BinarySerialization to do it.