I need to create json string which looks like this:
{
"key0": [{ "key00": "value00" }, { "key00": "value01" }, ...],
"key1": [{ "key11": "value10" }, { "key11": "value11" }, ...],
......
}
For generation of this string I use string operations and regular expressions. But perhaps there is a way to make it easier? For example, using Newtonsoft.Json?