I want to setup the next code in C#
'price_changes' => array(
'color' => array(
'Red' => '2',
'Blue' => '-10%',
),
'size' => array(
'Large' => '+1',
'Medium' => '-3',
),
),
How do i do this in C# (Winforms)
Or like this:
'price_changes' => array(
'size' => array(
'Large' => '+1',
'Medium' => '-3',
),
),
Many thanx for the help.