I have this object called MyObject in C# and I've been trying to make it so that we can take this object, serialize it to JSON, use that JSON to populate other lists in JavaScript, etc, and then use the resulting changed JSON string to be fed back into the MyObject object and change its values. However, whenever I call Json() on this object, it gives me correctly serialized JSON, but when I feed that exact JSON back into the UpdateFromJson(string json) method, it claims that the List is of count=0 and I get none of my List objects in the new object. The other properties populate just fine; the only problem is with the List.I have this object called MyObject in C# and I'