📄 student.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -