将Json字符串转换为C#对象列表

将Json字符串转换为C#对象列表,第1张

将Json字符串转换为C#对象列表

您可以使用json2csharp.com将json转换为对象模型

  • 将您的JSON粘贴到Box中。
  • 单击“生成”。
  • 您将为您的对象模型获得C#代码
  • 通过
    var model = JsonConvert.DeserializeObject<RootObject>(json);
    使用 NewtonJson* 反序列化 *

在这里,它将生成如下内容:

public class MatrixModel{    public class Option    {        public string text { get; set; }        public string selectedMarks { get; set; }    }    public class Model    {        public List<Option> options { get; set; }        public int maxOptions { get; set; }        public int minOptions { get; set; }        public bool isAnswerRequired { get; set; }        public string selectedOption { get; set; }        public string answerText { get; set; }        public bool isRangeType { get; set; }        public string from { get; set; }        public string to { get; set; }        public string mins { get; set; }        public string secs { get; set; }    }    public class Question    {        public int QuestionId { get; set; }        public string QuestionText { get; set; }        public int TypeId { get; set; }        public string TypeName { get; set; }        public Model Model { get; set; }    }    public class RootObject    {        public Question Question { get; set; }        public string CheckType { get; set; }        public string S1 { get; set; }        public string S2 { get; set; }        public string S3 { get; set; }        public string S4 { get; set; }        public string S5 { get; set; }        public string S6 { get; set; }        public string S7 { get; set; }        public string S8 { get; set; }        public string S9 { get; set; }        public string S10 { get; set; }        public string ScoreIfNoMatch { get; set; }    }}

然后,您可以反序列化为:

var model = JsonConvert.DeserializeObject<List<MatrixModel.RootObject>>(json);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5566275.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存