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

📄 user.cs

📁 这是一个C#写的QQ聊天工具,大家可以看看怎么样,发表一个意见
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace SQ
{
    class User
    {
        private List<User> friend;
        private int uid;
        private string name;
        private int picture=0;
        private int sex=0;
        private int age;
        private string occupation;
        private string explanation;


        public List<User> Friend {
            get { return this.friend; }
            set { this.friend = value; }
        }

        public int Uid {
            get { return uid; }
            set { this.uid = value; }
        }

        public string Name
        {
            get { return name; }
            set { this.name = value; }
        }

        public int Picture
        {
            get { return picture; }
            set { this.picture = value; }
        }

        public int Sex
        {
            get { return sex; }
            set { this.sex = value; }
        }

        public int Age {
            get { return age; }
            set { this.age = value; }
        }

        public string Occupation {
            get { return occupation; }
            set { this.occupation = value; }
        }

        public string Explanation {
            get { return explanation; }
            set { this.explanation = value; }
        }
    }
}

⌨️ 快捷键说明

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