You just need to serialize the instance of MyObject. Serializer will automatically serialize the inner lists accordingly.
If you need to ignore any property use the [ScriptIgnore] atribute like russau suggested.
eg.
public class MySubObject
{
 // The JavaScriptSerializer ignores this field.
        [ScriptIgnore]
        public int useID { get; set; }
}