Snowfun

导航

 

2011年4月19日

摘要: 錯誤提示信息:不是標記成abstract或extern,因此必須宣告主體原因:主要是用到了Framework3.5的特性,而VS2005不支持。原代碼:public int sIndex { private set; get; }更新代碼為:private int _sIndex;public int sIndex{set { _sIndex = value; }get { return _sIndex; }} 阅读全文
posted @ 2011-04-19 16:41 Snowfun 阅读(2819) 评论(0) 推荐(0) 编辑