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.
我在一个 xml 文件中有很多数据(元素周期表的所有元素)。
我应该在每次应用程序启动时加载还是使用在 IsolatedStorageSettings 中创建元素对象列表?
第二个允许吗?哪一个会更有效率?
就个人而言,我会手动序列化文件并存储它,然后在启动时反序列化它 - 我假设您拥有的元素周期表一次用于多个元素。
将这些数据保存在像IsolatedStorageSettings.
IsolatedStorageSettings
ISS通常建议用于应用程序设置或在使用应用程序时随时间变化的数据。您的情况并非完全如此。
ISS