Windows Phone 8-将列表保存到隔离存储

本文关键字:隔离 存储 保存 列表 Phone Windows | 更新日期: 2023-09-27 18:26:43

我正在尝试保存一个属于我的类类型的对象集合。我收到一个错误:

无法反序列化集合数据协定类型"System.Collections.Generic.List",因为它没有公共的无参数构造函数。添加公共的无参数构造函数将修复此错误。

这是我的课:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MojProjekt
{
    class Lekarna
    {
        public string Ime { get; set; }
        public Lekarna()
        {
        }
    }
}

以下是我如何保存到IsolatedStorage:

List<Lekarna> lekarneList = new List<Lekarna>();  
// here I then fill the list ...  
IsolatedStorageSettings localStorage = IsolatedStorageSettings.ApplicationSettings;
localStorage.Add("lekarneList", lekarneList;
localStorage.Save();

Windows Phone 8-将列表保存到隔离存储

使类成为公共

public class Lekarna