摘要: 问题的引子先来看问题的引子。定义一个下面这样的类,此类有Serializable属性,并且有一个属性的定义没有使用自动属性来实现。 1 [Serializable] 2 public class Users 3 { 4 public int UserID { get; set; } 5 6 public string UserName { get; set; } 7 8 public string UserEmail { get; set; } 9 10 private string _testProperty;11 public string Te... 阅读全文
posted @ 2012-12-04 18:37 Parry 阅读(4089) 评论(6) 推荐(3) 编辑