📄 professor.cs
字号:
using System;
using System.Collections;
namespace ApplicationForm
{
/// <summary>
/// Summary description for Professor.
/// </summary>
public class Professor:Employee
{
protected string _courses;
public Professor()
{
//
// TODO: Add constructor logic here
//
}
public Professor(string EmpId, string Name, long PhoneNo, string Address, string PerAddress, string Courses, string EStat):base(EmpId,EStat)
{
//
// TODO: Add constructor logic here
//
this._name = Name;
this._phoneNumber = PhoneNo;
this._address = Address;
this._permanentAddress = PerAddress;
this._courses = Courses;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -