So I am trying to convert a file (VDF (Valve Data Format)) from VDF to JSON - VDF is a custom format used by Valve that is basically a Key Value list. There is more info about the format Here.
I want to convert it from that format to JSON so I can more easily work with it and extract values using Newtonsoft.Json.
As far as I can tell, this conversion has already been done in PHP and Javascript, but there is no existing C# Code, and I am not very clear on how to do what was done in those cases.
I have been trying to make this work for the last 2 hours and so far have yet to come close to a working example, so please, any help creating this would be appreciated.