您好我正在将JavaScript转换为C#代码,但我无法弄清楚如何将以下内容写入C#?有什么帮助吗?
var MyValues = {
"Values1": [
0.0, 2.33, -3,
0.0, 1.0, 0.0,
0.0, 0.0, 1.0
],
"Values2": [
1.0, 2.0, 0.0,
1.567207, 0.0, 2.224827,
0.2, 0.0, 1.0
],
"Values3": [
0.0, 0.0, 0.0,
0.0, 1.0, 0.0,
-3.222, 1.2209, 0.0
]
};
答案 0 :(得分:3)
这个编译
var MyValues = new
{
Values1 = new[]{
0.0, 2.33, -3,
0.0, 1.0, 0.0,
0.0, 0.0, 1.0
},
Values2 = new[]{
1.0, 2.0, 0.0,
1.567207, 0.0, 2.224827,
0.2, 0.0, 1.0
},
Values3 = new[]{
0.0, 0.0, 0.0,
0.0, 1.0, 0.0,
-3.222, 1.2209, 0.0
}
};
答案 1 :(得分:3)
你可以这样做。这是一种明确的方式。
static void Main(string[] args)
{
Dictionary<String, double[]> dict = new Dictionary<string, double[]>();
dict.Add("Values1", new double[] { 0.0, 2.33, -3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0 });
dict.Add("Values2", new double[] { 1.0, 2.0, 0.0, 1.567207, 0.0, 2.224827, 0.2, 0.0, 1.0 });
dict.Add("Values3", new double[] { 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -3.222, 1.2209, 0.0 });
}