C# 遍历 Json 数组, .net core 如何遍历 json 数组

C# 遍历 Json 数组, .net core 如何遍历 json 数组
using Newtonsoft.Json.Linq;
using System;
using System.Text;

namespace ConsoleApp41
{
    internal class Program
    {
        static void Main(string[] args)
        {
            StringBuilder builder = new StringBuilder();
            builder.AppendLine("{");
            builder.AppendLine("\"key1\":\"value1\",");
            builder.AppendLine("\"key2\":\"value2\",");
            builder.AppendLine("\"key3\":\"value3\",");
            builder.AppendLine("}");
            JObject jObject = JObject.Parse(builder.ToString());
            foreach (JProperty property in jObject.Properties())
            {
                Console.WriteLine("key:" + property.Name + " value:" + property.Value);
            }

            Console.ReadKey();
        }
    }
}


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角