Hi
I need to set/unset configure options for an in-house C# software through its GUI. Can I use JSON?
Thanks
Hi
I need to set/unset configure options for an in-house C# software through its GUI. Can I use JSON?
Thanks
Sure, you can just use the DataContractJsonSerializer :-)
http://msdn.microsoft.com/en-us/library/bb412179.aspx
I am not sure about your question, but I would recommend to use the built in configuration mechanism of .NET to store user and application settings
http://stackoverflow.com/search?q=.net+configuration
Otherwise use the DataContractJsonSerializer as suggested and do it manually