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