如何获取xamarin表单中没有键的JSON数据

如何获取xamarin表单中没有键的JSON数据,json,xamarin,Json,Xamarin,如何获取没有xamarin形式键的数据? JSON示例: { "child": [ "25400.000", "45500.0000", "45501.0000" ] } 使用 公共类根对象 { 公共列表子项{get;set;} } 这是否回答了您的问题? public class RootObject { public List<string> child { get; set; } }

如何获取没有xamarin形式键的数据? JSON示例:

{
    "child": [
        "25400.000",
        "45500.0000",
        "45501.0000"
    ]
}
使用

公共类根对象
{
公共列表子项{get;set;}
}

这是否回答了您的问题?
public class RootObject
{
    public List<string> child { get; set; }
}