将数组从PHP转换为C#

时间:2013-06-19 09:29:56

标签: c# php arrays multidimensional-array

我想将下面显示的PHP数组转换为C#数组。

我不知道该怎么做。

请帮我把它移植一下。

<?php
$var["figures"]["en"] = array(
    array(
        "table"    => "Revenue",
        "box"      => "Revenue",
        "axis"     => "Revenue",
        "legend"   => "Revenue",
        "link"     => "",
        "target"   => "",
        "footnote" => "",
        "unit"     => '',
        "stacked"  => '',
        "icon"     => ""
    ),
    array(
        "table"    => "PBIT",
        "box"      => "PBIT",
        "axis"     => "PBIT",
        "legend"   => "PBIT",
        "link"     => "",
        "target"   => "",
        "footnote" => "",
        "unit"     => '',
        "stacked"  => '',
        "icon"     => ""
    )
);
print_r($var);
?>

1 个答案:

答案 0 :(得分:1)

C#不支持带字符串索引的数组。 Dictionary是您可以获得的最接近的。

举个好例子,看一下this question