如何将C#类转换为JSON版本的字符串
本文关键字:JSON 版本 字符串 转换 | 更新日期: 2023-09-27 18:29:45
我想在Postman中使用这个字符串来测试Web API,我知道我可以通过使用库(例如Newtonsoft)来进行对象序列化,但有没有其他方法可以为c#类只获取JSON字符串的骨架?
示例:
如果我有这样的C#类:
public class RootObject
{
public int ID { get; set; }
public string Name { get; set; }
}
我希望输出为:
{
"ID": ,
"Name" : ""
}
我可以稍后在Postman中测试时编辑这些值。
我想您正在寻找的是类似Json.NET的东西:http://james.newtonking.com/json
它允许您执行以下操作:
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
//{
// "Name": "Apple",
// "Expiry": "2008-12-28T00:00:00",
// "Sizes": [
// "Small"
// ]
//}
//The Following function will Take the Class object as an Argument and return the JSON obect as String,
//Please use the following namespace
using System.Web.Script.Serialization;
public string ConvertObjecttoJSON(object clsobj)
{
System.Web.Script.Serialization.JavaScriptSerializer serializer =
new System.Web.Script.Serialization.JavaScriptSerializer();
string jsonString = serializer.Serialize(clsobj);
Console.WriteLine(jsonString);
return jsonString;
}