Я новичок в ASP.NET с С# Теперь мне нужно решение для одной проблемы
в PHP я могу создать массив вроде этого
$arr[] = array('product_id' => 12, 'process_id' => 23, 'note' => 'This is Note');
//Example
Array
(
[0] => Array
(
[product_id] => 12
[process_id] => 23
[note] => This is Note
)
[1] => Array
(
[product_id] => 5
[process_id] => 19
[note] => Hello
)
[2] => Array
(
[product_id] => 8
[process_id] => 17
[note] => How to Solve this Issue
)
)
Я хочу создать такую же структуру массива в ASP.NET с С#.
Пожалуйста, помогите мне решить эту проблему. Спасибо в Advance.