How to serialize using System.Json in MonoTouch
问题 My other question seems to be too generic, so I tought I'd create a new one on the details. Sorry if that is considered bad practice. I am trying to serialize C# objects to JSON strings with MonoTouch and the System.Json namespace in a way that doesn't require me to descend through the object(s) myself. Is that possible? If yes, how to do it properly? De-serialization works well by implicitly casting a JsonValue to a string, int, whatever. Also, descending in the hierarchy is no problem. Like