$array = array(
"val1"=>array(
"set1" => array (
35,
30,
39
),
),
);
public static Dictionary<string, Dictionary<string, string>> Action = new Dictionary<string, Dictionary<string, string>>
{
["val1"] = new Dictionary<string, string>
{
["set1"] = "2"
}
};
var dict = new Dictionary {
["val1"] = new Dictionary {
["set1"] = new [] {35, 30, 39}
}
};
// dict имеет тип Dictionary<string, Dictionary<string, int[]>>