好的,我已经试了4个小时了。
我想做的是得到这个列表中的每个用户名(可以是任何匹配userid的列表):
我想在控制台中看到的示例:
Username: sk2lly
和userid
的好友列表中的所有其他用户但是我一直得到这个错误
CS0136:不能在此作用域中声明名为'temp'的局部或形参,因为该名称在封闭的局部作用域中用于定义局部或形参
代码:
Console.WriteLine("UserId: ");
string UserId = Console.ReadLine();
Console.Clear();
WebClient client = new WebClient();
string useridtextbox1 = client.DownloadString("https://api.roblox.com/users/" + UserId + "/friends/");
dynamic fobj = JsonConvert.DeserializeObject<dynamic>(useridtextbox1);
string temp = fobj["Username"].ToString();
foreach (string temp in fobj)
{
Console.WriteLine(temp);
Console.ReadLine();
}
try this
foreach (var temp in fobj)
{
Console.WriteLine(temp.ToString());
Console.ReadLine();
}