我正在尝试保存一组属于我的类的对象。我收到一条错误消息:
集合数据协定类型 '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()
{
}
}
}
这是我保存到独立存储的方法:
List<Lekarna> lekarneList = new List<Lekarna>();
// here I then fill the list ...
IsolatedStorageSettings localStorage = IsolatedStorageSettings.ApplicationSettings;
localStorage.Add("lekarneList", lekarneList;
localStorage.Save();