So I'm curious, when you need to store user settings or application settings what method do you normally use?
I have been using a class and just serializing it to a file. But there is also the "settings" in the application's properties folder. Does anyone ever use that? Any pros/cons to either method? Suggestions?
I always used a class because I can store it however I want, where ever I want and feel like I have a bit more control.