In the current design of NetSerializer, would it be difficult to support properties of type IEnumerable<T> so that a consumer could populate with the standard List or array of T? Right now I'm getting a KeyNotFoundException when I try to serializer an object with an IEnumerable<T> property, where the value of that property is set to a List<T>.
In the current design of NetSerializer, would it be difficult to support properties of type
IEnumerable<T>so that a consumer could populate with the standard List or array of T? Right now I'm getting aKeyNotFoundExceptionwhen I try to serializer an object with anIEnumerable<T>property, where the value of that property is set to aList<T>.