tags:

views:

42

answers:

2

Hi

I need to set/unset configure options for an in-house C# software through its GUI. Can I use JSON?

Thanks

A: 

Sure, you can just use the DataContractJsonSerializer :-)
http://msdn.microsoft.com/en-us/library/bb412179.aspx

Joel Martinez
A: 

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

Peter Gfader