Ways to store data in .NET

前端 未结 4 1831
臣服心动
臣服心动 2021-01-01 06:59

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

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-01 07:40

    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.

提交回复
热议问题