---
title: "Can Json.Net handle a List&lt;object&gt;?"  
description: "Can Json.Net handle a List&lt;object&gt;?"  
author: "Royce Roy"  
published: 2014-01-28  
updated: 2014-01-29  
canonical: https://www.mindstick.com/forum/1903/can-json-dot-net-handle-a-list-lt-object-gt  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Can Json.Net handle a List&lt;object&gt;?

List<[User](https://www.mindstick.com/articles/13001/multi-statement-table-valued-user-defined-function-in-sql-server)> list = LoadUsers();

JObject json = new JObject();

json["[users](https://www.mindstick.com/news/2244/issue-preventing-users-from-accessing-facebook-s-social-networking-platforms-has-been-resolved)"] = new JValue(list);

Doesn't seem to be working?

**[Error](https://yourviews.mindstick.com/view/88527/fixing-quickbooks-error-4120-reinstalling-vs-repairing):**

Could not determine [JSON object](https://www.mindstick.com/forum/699/how-to-parse-into-json-object-using-json-parse-in-node-js) type for type System.Collections.Generic.List

## Replies

### Reply by Pravesh Singh

Hi Royce,

This might help:

[json](https://www.mindstick.com/forum/34446/convert-json-string-to-object)["users"] = new JValue(JsonConvert.SerializeObject(list));


---

Original Source: https://www.mindstick.com/forum/1903/can-json-dot-net-handle-a-list-lt-object-gt

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
