person.cs
来自「This is program that i just have downloa」· CS 代码 · 共 47 行
CS
47 行
using System;
using System.Collections;
namespace WebApplication1
{
public class Person
{
private int personID;
private string name;
private DateTime startDate;
private DateTime endDate;
public int PersonID
{
get { return personID; }
set { personID = value; }
}
public string Name
{
get { return name; }
set { name = value; }
}
public DateTime DateStarted
{
get { return startDate; }
set { startDate = value; }
}
public DateTime DateEnded
{
get { return endDate; }
set { endDate = value; }
}
public Person()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?