Answer the question
In order to leave comments, you need to log in
Analogue of php arrays in c#?
You need to create an array - with something like this structure:
$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"
}
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question