📜  c# foreach 数组 json 中的对象 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:40.191000             🧑  作者: Mango

代码示例1
// Answer By: Cam3r0n#0481
// Pro Tip : Use this to convert your JSON to C# Classes
// https://json2csharp.com/

// The example json
// {"chat":[{"author":"Bob","content":"My name is Bob and I approve this message.","timestamp":1604438166}],"error":false,"message":"Chat fetched."}

public class ChatMessage
{
    public string author;
    public string content;
    public int timestamp;
}

public class ChatResponse
{
    public List chat;
    public bool error;
    public string message;
}

ChatResponse response = JsonConvert.DeserializeObject(json);
foreach (var message in response.chat)
{
    rtbChat.AppendText($"{message.author}: {message.content}\n");
}