I have an associative array in PHP
$data=array(
100=>array(
"first"=>array(4,24,5,0),
"second"=>array(42,58,23,8),
"third"=>array(4,1,14,0),
"fourth"=>array(49,41,28,2),
"fifth"=>array(41,30,13,5)
),
500=>array(
"first"=>array(4,24,5,0),
"second"=>array(42,58,23,8),
"third"=>array(4,1,14,0),
"fourth"=>array(49,41,28,2),
"fifth"=>array(41,30,13,5)
)
);
and i want to move that code into c# programming, but i don't know how to move it. I try to use List but i just can take in 100 and 500 only.
How to move it into c# programming?