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