user.cs
来自「《C#和.NET第一步》中的财务系统 利用三层结构做的」· CS 代码 · 共 20 行
CS
20 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class User
{
private string uName;
private string uPwd;
private string uRemarks;
private string uAccountName;
private string uID;
public string UName { get { return uName; } set { uName = value; } }
public string UPwd { get { return uPwd; } set { uPwd = value; } }
public string URemarks { get { return uRemarks; } set { uRemarks = value; } }
public string UAccountName { get { return uAccountName; } set { uAccountName = value; } }
public string UID { get { return uID; } set { uID = value; } }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?