所以我正在尝试使用 defindex 搜索我的 json 文件中的项目并返回项目名称,但是我得到一个错误。我进行了搜索,但似乎没有什么相关的。
var json = File.ReadAllText(dota2schemaFilePath);
var dota2schema = JsonConvert.DeserializeObject<schema>(json);
foreach (Item item in Items) //ERROR HERE
{
if (item.Defindex == 4793)
itemname = item.Name;
错误 2 非静态字段、方法或属性“schemaexample.schema.Items.get”需要对象引用
它似乎需要一个参考。我如何简单地搜索项目?
这是我的完整代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.IO;
using System.Threading;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
namespace schemaexample
{
public class schema
{
[JsonProperty("items")]
public Item[] Items { get; set; }
[JsonProperty("items_game_url")]
public string ItemsGameUrl { get; set; }
[JsonProperty("status")]
public int Status { get; set; }
public class Item
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("defindex")]
public int Defindex { get; set; }
[JsonProperty("item_class")]
public string ItemClass { get; set; }
[JsonProperty("item_type_name")]
public string ItemTypeName { get; set; }
[JsonProperty("item_name")]
public string ItemName { get; set; }
[JsonProperty("proper_name")]
public bool ProperName { get; set; }
[JsonProperty("item_quality")]
public int ItemQuality { get; set; }
[JsonProperty("image_inventory")]
public string ImageInventory { get; set; }
[JsonProperty("min_ilevel")]
public int MinIlevel { get; set; }
[JsonProperty("max_ilevel")]
public int MaxIlevel { get; set; }
[JsonProperty("image_url")]
public string ImageUrl { get; set; }
[JsonProperty("image_url_large")]
public string ImageUrlLarge { get; set; }
[JsonProperty("item_description")]
public string ItemDescription { get; set; }
[JsonProperty("attributes")]
public Attribute[] Attributes { get; set; }
[JsonProperty("item_set")]
public string ItemSet { get; set; }
}
public static void Main(string[] args)
{
string dota2schemaFilePath = @"C:\Users\Andrew\Documents\GitHub\SteamBot\Bin\Debug\dota2schema.txt";
string itemname = "not set";
var json = File.ReadAllText(dota2schemaFilePath);
var dota2schema = JsonConvert.DeserializeObject<schema>(json);
foreach (Item item in Items) //ERROR HERE
{
if (item.Defindex == 4793)
itemname = item.Name;
}
Console.WriteLine(itemname);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
protected class schemaresult
{
public schema result { get; set; }
}
}
}
如果你需要它,我正在阅读的 json 在这里: http ://www50.zippyshare.com/v/13310944/file.html