I'm using C#.Net and am trying to parse out some JSON.
I have this JSON that I retrieve. I've tried to use JavaScriptSerliazer but cannot figure out the correct structure.
What is the best way to parse this JSON to get each array (first, second, third, etc)?
{
"first":["A","B"],
"second":["C","D"],
"third":["E","F","G","H","I"],
"fourth":["J","K","L","M","N"]
}