asp.net iterate json string code example
Example 1: c# foreach object in array json
public class ChatMessage
{
public string author;
public string content;
public int timestamp;
}
public class ChatResponse
{
public List<ChatMessage> chat;
public bool error;
public string message;
}
ChatResponse response = JsonConvert.DeserializeObject<ChatResponse>(json);
foreach (var message in response.chat)
{
rtbChat.AppendText($"{message.author}: {message.content}\n");
}
Example 2: c# loop through json
public class ChatMessage
{
public string author;
public string content;
public int timestamp;
}
public class ChatResponse
{
public List<ChatMessage> chat;
public bool error;
public string message;
}
var json = @"{"chat":[{"author":"Bob","content":"My name is Bob and I approve this message.","timestamp":1604438166}],"error":false,"message":"Chat fetched."}
";
ChatResponse response = JsonConvert.DeserializeObject<ChatResponse>(json);
foreach (var message in response.chat)
{
rtbChat.AppendText($"{message.author}: {message.content}\n");
}