当前位置:编程学习 > C#/ASP.NET >>

奇怪的问题

// SQL SERVER 2005 连接
SqlConnection sqlConn = new SqlConnection();
出现异常,这个事怎么回事?
异常信息:未处理的“System.StackOverflowException”类型的异常出现在 MeetingManage.exe 中。

是不是我写的Model有关系?代码如下

#region 字段

        private int _id;                // 会议编号
        private string _type;           // 会议类型
        private DateTime _meetingtime;  // 开会时间
        private string _timelength;     // 开会时长
        private string _theme;          // 会议主题
        private string _participant;    // 参加会议人员
        private int _days;              // 提前通知天数
        private string _content;        // 会议内容

#endregion

#region 构造器

        public MeetingInfo()
        {

        }

#endregion

#region 属性

        /// <summary>
        /// 会议编号
        /// </summary>
        public int ID
        {
            get { return _id; }
            set { _id = value; }
        }
        /// <summary>
        /// 会议类型
        /// </summary>
        public string Type
        {
            get { return _type; }
            set { _type = value; }
        }
        /// <summary>
        /// 开会时间
        /// </summary>
        public DateTime Meetingtime
        {
            get { return _meetingtime; }
            set { _meetingtime = value; }
        }
        /// <summary>
        /// 开会时长
        /// </summary>
        public string Timelength
        {
            get { return _timelength; }
            set { _timelength = value; }
        }
        /// <summary>
        /// 主题
        /// </summary>
        public string Theme
        {
            get { return _theme; }
            set { _theme = value; }
        }
        /// <summary>
        /// 参加会议人员
        /// </summary>
        public string Participant
        {
            get { return _participant; }
            set { _participant = value; }
        }
        /// <summary>
        /// 提前通知天数
        /// </summary>
        public int Days
        {
            get { return _days; }
            set { _days = value; }
        }
        /// <summary>
        /// 会议内容
        /// </summary>
        public string Content
        {
            get { return _content; }
            set { _content = value; }
        }
#endregion

#region 方法

        MeetingInfoDAL meetingDAL = new MeetingInfoDAL();
        /// <summary>
        /// 获取开会时间
        /// </summary>
        /// <returns></returns>
        public List<MeetingInfo> GetTime()
        {
            return meetingDAL.GetTime();
        }

        public List<MeetingInfo> GetMeeting()
        {
            return meetingDAL.GetMeeting();
        }

#endregion
--------------------编程问答-------------------- 确保您没有无限循环或无限递归。
http://msdn.microsoft.com/zh-cn/library/w6sxk224(v=vs.80).aspx
有可能是属性自己调用自己
自己看看吧
补充:.NET技术 ,  .NET Framework
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,