为了账号安全,请及时绑定邮箱和手机立即绑定

使用逗号分隔的字符串在C#中设置对象

使用逗号分隔的字符串在C#中设置对象

C#
临摹微笑 2021-05-06 14:21:16
我正在遍历Umbraco节点列表,并使用每个节点上的属性值设置类的属性foreach (var node in listOfNodeWithProperty){    var faqProperties = new Faq    {        Question = node.GetPropertyValue<string>("question"),        Answer = node.GetPropertyValue<string>("answer"),        Schemes = node.GetPropertyValue<string>("schemes")    };    faqCollection.faqs.Add(faqProperties);}我的常见问题课如下internal class Faq{    public string Question { get; set; }    public string Answer { get; set; }    public string Schemes { get; set; }    public IEnumerable<SchemeTypes> SchemeTypes { get; set; } }internal class SchemeTypes{    public string SchemeType { get; set; }}字符串的所有直接输入,但我要填充SchemeTypes对象的值是逗号分隔的字符串。如何使用此字符串并创建一个数组以填充SchemeTypes?我想要SchemeTypes作为对象,因为我的最终输出将是JSON
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 179 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信