马上加入IBC程序猿 各种源码随意下,各种教程随便看! 注册 每日签到 加入编程讨论群

C#教程 ASP.NET教程 C#视频教程程序源码享受不尽 C#技术求助 ASP.NET技术求助

【源码下载】 社群合作 申请版主 程序开发 【远程协助】 每天乐一乐 每日签到 【承接外包项目】 面试-葵花宝典下载

官方一群:

官方二群:

C#多重泛型问题

[复制链接]
查看3631 | 回复1 | 2013-10-27 23:08:53 | 显示全部楼层 |阅读模式
public class ManagerHelper
    {
        public static Dictionary<string, Class> School=new Dictionary<string,Class> ();
    }

-----------------------------------------------------------------------------------


public class Class
    {
        private string className;

        public string ClassName
        {
            get { return className; }
            set { className = value; }
        }
        private DateTime classStartTime;

        public DateTime ClassStartTime
        {
            get { return classStartTime; }
            set { classStartTime = value; }
        }
        private DateTime classEndTime;

        public DateTime ClassEndTime
        {
            get { return classEndTime; }
            set { classEndTime = value; }
        }
        private Dictionary<int, Student> students;

        public Dictionary<int, Student> Students
        {
            get { return students; }
            set { students = value; }
        }
    }
------------------------------------------------------------------------------------
public class Student
    {
        private int studentNum;

        public int StudentNum
        {
            get { return studentNum; }
            set { studentNum = value; }
        }
        private string studentName;

        public string StudentName
        {
            get { return studentName; }
            set { studentName = value; }
        }
        private string studentSex;

        public string StudentSex
        {
            get { return studentSex; }
            set { studentSex = value; }
        }
        private string studentRace;

        public string StudentRace
        {
            get { return studentRace; }
            set { studentRace = value; }
        }
        private string studentAddress;

        public string StudentAddress
        {
            get { return studentAddress; }
            set { studentAddress = value; }
        }
        private string studentPhone;

        public string StudentPhone
        {
            get { return studentPhone; }
            set { studentPhone = value; }
        }
        private string studentPostaCode;

        public string StudentPostaCode
        {
            get { return studentPostaCode; }
            set { studentPostaCode = value; }
        }
        private string className;

        public string ClassName
        {
            get { return className; }
            set { className = value; }
        }
    }

如何调用这个Student类里的东西呢?
ibcadmin | 2013-10-28 11:06:45 | 显示全部楼层
什么意思 ?  没搞懂 想要实现什么?
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
*滑块验证:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则