student.cs

来自「北大青鸟内部资料」· CS 代码 · 共 43 行

CS
43
字号
using System;
using System.Collections;

namespace ApplicationForm
{
	/// <summary>
	/// Summary description for Student.
	/// </summary>
	public class Student:Person
	{
		protected string _studentEnrollNumber; 
		protected string _courses; 
		protected string _courseType;
		
		public enum StudentType
		{
			FullTime,
			PartTime,
	    }
		
		public Student()
		{
			//
			// TODO: Add constructor logic here
			//
		}

		public Student(string _stdEnNo, string _name, long _phoneNo, string _address, string _perAddr, string _courses, string _courseType)
		{
			//
			// TODO: Add constructor logic here
			//
			this._studentEnrollNumber = _stdEnNo;
			this._name = _name;
			this._phoneNumber = _phoneNo;
			this._address = _address;
			this._permanentAddress = _perAddr;
			this._courses = _courses;
	
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?