【简单问题】求助各位啦为了让各位看得简单些,我把问题模式化:class student{public int student_id;public string stduent_name;}然后在一个函数中:private void fuction1{student s1;s1.student_id=1982;//报错:使用了未赋值的局部变量s1.student_name="wang gang";/*后面的我不写了*/}我就不信服了:这不是正在赋值吗?怎么改才能通过?