I am looking for ways to store data in a Windows Forms application in .NET.
I want to make the input data of a system persistent, so when I close my program and open it agai
If your data is not mission critical (e.g. user preferences), you could just serialise your objects to file, and de-serialise them next time the app is loaded.