C# loop through array of objet
List<string> names = new List<string>() { "Suresh Dasari", "Rohini Alavala", "Trishika Dasari" };
foreach (string name in names)
{
Console.WriteLine(name);
}
C# loop through array of objet
List<string> names = new List<string>() { "Suresh Dasari", "Rohini Alavala", "Trishika Dasari" };
foreach (string name in names)
{
Console.WriteLine(name);
}
c# foreach object in array json
// 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<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");
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us