Where to store configuration for a simple .NET application?

后端 未结 7 2069
死守一世寂寞
死守一世寂寞 2020-12-16 00:50

I\'m programming a fairly simple application which I want to cut to just one simple EXE file + some data storage (XML for example).

My question is regarding configur

7条回答
  •  不知归路
    2020-12-16 01:37

    You could use the app.config file for storing your configuration. For the data, I would sugest something like db4o or SQLite.

    Edit

    This tutorial can show you how simple is to use db40 to store and retrieve your data.

提交回复
热议问题