类型或命名空间定义错误

时间:2013-04-08 00:06:38

标签: c# namespaces

我是论坛和编码的新手,这是一个我还没有看到的错误,据我所知,已经正确地包含了我的方法和类,但我仍然得到以下2个错误:

  1. }预期
  2. 类型或命名空间定义,或预期的文件结尾。

    namespace Assignment15Start
    {
        public partial class GradebookForm : Form
        {
            private Student betty;
    
            public GradebookForm()
            {
                InitializeComponent();
            }
    
            private void addStudentButton_Click(object sender, EventArgs e)
            {
                betty = new Student() {Name = "Lisa", Id = 55555};
                //betty.SingleCourse.AssignmentCreate();
    
                private void Grade()
                {
                    double grade;
                    grade = betty.SingleCourse.CalcGrade()*100;
                    MessageBox.Show("Your grade is " + grade);
                }
             }
        }
    }
    

1 个答案:

答案 0 :(得分:1)

您在Grade()方法中定义addStudentButton_Click方法。

你做不到;方法不能嵌套。 (匿名方法除外)