student.cs
来自「改程序能够查询课程表」· CS 代码 · 共 83 行
CS
83 行
using System;
using System.Collections.Generic;
using System.Text;
namespace StudentTest
{
public class Student
{
private string m_Address;
public string Address
{
get
{
return m_Address;
}
set
{
m_Address = value;
}
}
private Int32 m_Age;
public Int32 Age
{
get
{
return m_Age;
}
set
{
m_Age = value;
}
}
private string m_SName;
public string SName
{
get
{
return m_SName;
}
set
{
m_SName = value;
}
}
private string m_SNO;
public string SNO
{
get
{
return m_SNO;
}
set
{
m_SNO = value;
}
}
private string m_Sex;
public string Sex
{
get
{
return m_Sex;
}
set
{
m_Sex = value;
}
}
private DictionaryCode m_SexSource;
public DictionaryCode SexSource
{
get
{
return m_SexSource;
}
set
{
m_SexSource = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?