以下に示す 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);
?>