usertable.cs
来自「教师管理系统,登陆上去后可以在系统中对教师资料等等做管理」· CS 代码 · 共 47 行
CS
47 行
using System;
using System.Collections.Generic;
using System.Text;
namespace rsgl
{
class userTable
{
private string userType;
private string userName;
private string userPassword;
public string UserType
{
set
{
this.userType = value;
}
get
{
return userType;
}
}
public string UserName
{
set
{
this.userName = value;
}
get
{
return userName;
}
}
public string UserPassword
{
set
{
this.userPassword = value;
}
get
{
return userPassword;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?