I\'m trying to deserialize json to an object model where the collections are represented as IList
types.
The actual deserializing is here:
It is not possible to deserialize directly to an interface, as interfaces are simply a contract. The JavaScriptSerializer has to deserialize to some concrete type that implements IList
var list = serializer.Deserialize>(...);
var lazyList = new LazyList(list);