⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cl_stuland.cs

📁 用三层架构写的用户登录的简单例子 适合C#初学者
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Model
{
    public class Cl_stuland
    {
       
        public Cl_stuland()
        { 
        
        }

        public Cl_stuland(string str_stuid,string str_password)
        {
            _stuid = str_stuid;
            _password = str_password;
        }

        string _stuid;

        public string Stuid
        {
            get { return _stuid; }
            set { _stuid = value; }
        }


        string _password;

        public string Password
        {
            get { return _password; }
            set { _password = value; }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -