public int intCurrentAddCurTotal { get; set; }这句是定义了一个自动属性,他会自动去产生相应的私有变量。CLR做了相应处理,相当与如下代码:
private int _intCurrentAddCurToTal;
public int intCurrentAddCurTotal
{
get{ return
_intCurrentAddCurToTal;}
set{ _intCurrentAddCurToTal=value;}
}
所以你使用自动属性后,语句private int _intCurrentAddCurToTal;就是多余的了。
因为你在别的地方没有使用过它,所以就会提示警告【字段“WFMStudentManager.frmInputCourseInfo._intCurrentAddCurToTal”从未被使用过】
如果你还有什么问题,欢迎加群90925122讨论