Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个应用程序,我认为存储应用程序状态的最佳方式是拥有键和值对。
我不确定是将这些数据保存在隔离存储中的文件中,还是将其保存为应用程序设置,因为它已经设置为键值对。
解决此问题的最佳方法是什么?
对于简单的键值对数据,使用IsolatedStorageSettings. 对于复杂数据,您应该考虑其他方式。
IsolatedStorageSettings
您可以包装使用的IsolatedStorageSettings方式,即不是每次都从文件中读取值,而是在第一次读取时缓存。例如,如果您还想从后台代理访问设置,您可能还希望使其成为线程安全的。