Javascript / Json对象:
refresh()
答案 0 :(得分:1)
您可以在Visual Studio 2013中使用自动将JSON字符串转换为C#类。
我们可以使用Edit->选择性粘贴 - >将Json粘贴为类
答案 1 :(得分:0)
它有几个步骤要遵循,但这是一种非常有效的方式
答案 2 :(得分:-2)
var dataset = new List<MyClass>();
public class MyClass
{
public string Label {get; set;}
public List<List<double>> data {get;set;}
public string Color {get; set;}
public MyPoint Points {get; set;}
public MyLine Lines {get; set;}
}
public class MyPoint
{
public string FillColor {get;set;}
public bool Show {get;set;}
}
public class MyLine
{
public bool Show { get; set;}
}