使用YamlDotNet反序列化FontAwesome Yaml

时间:2015-03-06 16:33:19

标签: c# .net serialization yamldotnet

我有一个Yaml文件: https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/src/icons.yml

一堂课:

public class IconSearch
{
    public string Name { get; set; }

    public string ClassName { get; set; }

    public IEnumerable<string> Filters { get; set; }
}

你能告诉我如何将yaml反序列化为IEnumerable对象吗?

我希望这样的东西能够工作,但它会返回null - 我猜它是因为我的一个属性不是根节点(图标)。相反,我正在尝试序列化根的孩子?

var input = new StringReader(reply);
var yaml = new YamlStream();
yaml.Load(input);
var icons = deserializer.Deserialize<IconSearch>(input);

1 个答案:

答案 0 :(得分:2)

您尝试反序列化的类似乎缺少属性。 我围绕着将yaml转换为json到csharp的方式,这是生成的类:

public class Rootobject
{
public Icon[] icons { get; set; }
}

public class Icon
{
public string[] categories { get; set; }
public object created { get; set; }
public string[] filter { get; set; }
public string id { get; set; }
public string name { get; set; }
public string unicode { get; set; }
public string[] aliases { get; set; }
public string[] label { get; set; }
public string[] code { get; set; }
public string url { get; set; }
}

使用的资源:
YAML to JSON online
JSON to CSHARP(我在视觉工作室使用了Paste特辑)

使用它来反序列化

var icons = deserializer.Deserialize<RootObject>(input);

<强>更新
我已经注释掉了用于创建YamlStream的行,因为它不是必需的(它将读者定位到流的末尾而不是开头,这可以解释为什么你之前得到null)。您的主要方法如下所示并且有效。我还修复了Antoine提到的错误

public static void Main()
{
    string filePath = "https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/src/icons.yml";
    WebClient client = new WebClient();
    string reply = client.DownloadString(filePath);
    var input = new StringReader(reply);
    //var yamlStream = new YamlStream();
    //yamlStream.Load(input);
    Deserializer deserializer = new Deserializer();
    //var icons = deserializer.Deserialize<IconSearch>(input);

    //Testing my own implementation
    //if (icons == null)
    //    Console.WriteLine("Icons is null");

    //Testing Shekhar's suggestion
    var root = deserializer.Deserialize<Rootobject>(input);
    if (root == null)
        Console.WriteLine("Root is null");
}