I have a whole bunch of files that my new client's given me, he told me it was XML. I'm afraid he's way off on this one, and says he has a little programming knowledge and said he wants me to use Linq to XML because he's familiar with that.
Here's what each file looks like (Note: Replaced real data with fake data)
<UserSettings>
${
Name: String;
Age: Int32;
Gender: String;
}
${
Name: String;
Age: Int32;
}
</UserSettings>
Now, this is just way too wacked out for me.
I'm trying to parse these file (and there are hundreds of them), but I have no idea where to start. I'm thinking it might be best to parse it myself, since I don't think this is anything like XML, or CSV, or Json (Actually, these files look more like Json than anything else that I've come across. But still, I don't think it's Json either.)
Has anyone seen this stuff before? What would you recommend to use to parse something like that?