0

我想将下面显示的 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);
?>
4

1 回答 1

1

C# 不支持带有字符串索引的数组。字典是你能得到的最接近的。

举个很好的例子,看看这个问题

于 2013-06-19T09:35:59.087 回答