I have to say this is not a perfect world stackoverflow problem where I'm stuck with a code level problem But I want to know how I can full fill the following requirement. Any Suggestion/advice would be great
I have a main folder , which contains many sub-folders . Each of these subfolders are expected to have a FieServer.config file which has data in JSON format as shown in the code below.
{
"name": "Max",
"age": "six",
"gender": "Male",
"country": "india",
}
I want to know how I can Read from the file and store the 2 keys "Name" and "Country" along with its respective values as variables to be used in my C# project.
Any suggestions for the above requirement