Hi, how can I read an json array from a data file?
I was looking at this part of documentation and tried to come out with something.
My test data file looks like this:
I was looking at this part of documentation and tried to come out with something.
My test data file looks like this:
{
"Test":
[
"ok",
"no"
]
}By the way to read a string value like:
Puts(dataFile["EpicCategory"]);
didn't work and I had to do something like this:
Puts(String.Format("{0}", dataFile["EpicCategory"]));
I am not that good at C# so I am stuck ¯\_(ツ)_/¯ can someone please explain me how does it work?