我有一个名为“城市”的课程
public class City
{
public int ID {get; set;}
public int StateID {get; set;}
public int CountryID{get; set;}
public string Name{get; set;}
.......
}
我有一个名为CityAdd.aspx的asp.net页面,在这个页面中我想创建一个可以存储在viewstate中的城市类集合。 是否可以使通用集合可序列化?
答案 0 :(得分:1)
执行以下操作,添加Serializable属性
[Serializable]
public class City
{
}