0
我想将下面显示的PHP数组转换为C#数组。将数组从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);
?>