首页 > 其他 > 详细

序列化避免异常的一种解决思路

时间:2015-08-12 23:21:02      阅读:192      评论:0      收藏:0      [点我收藏+]
 SerializationInfoEnumerator enumerator = info.GetEnumerator();
            while (enumerator.MoveNext())
            {
                if (enumerator.Value != null)
                {
                    if (enumerator.Name == "Caption")
                    {
                        this.caption = Convert.ToString(enumerator.Value);
                    }
                    else if (enumerator.Name == "Mark")
                    {
                        this.mark = Convert.ToString(enumerator.Value);
                    }
                    else if (enumerator.Name == "ImageIndex")
                    {
                        this.imageIndex = Convert.ToInt32(enumerator.Value);
                    }
                    else if (enumerator.Name == "ChildMenus")
                    {
                        this.childMenus = enumerator.Value as List<ToolMenu>;
                    }
                    else if (enumerator.Name == "DisplayStyle")
                    {
                        this.displayStyle = (MenuDisplayStyle)enumerator.Value;
                    }
                    else if (enumerator.Name == "GUID")
                    {
                        this.guid = Convert.ToString(enumerator.Value);
                    }
                    else if (enumerator.Name == "ISchecked")
                    {
                        this.isChecked = Convert.ToBoolean(enumerator.Value);
                    }
                    else if (enumerator.Name == "ISAllowCheck")
                    {
                        this.isAllowCheck = Convert.ToBoolean(enumerator.Value);
                    }
                    else if (enumerator.Name == "ISAllowDropIn")
                    {
                        this.isAllowDropIn = Convert.ToBoolean(enumerator.Value);
                    }
                    else if (enumerator.Name == "ISAllowDropOut")
                    {
                        this.isAllowDropOut = Convert.ToBoolean(enumerator.Value);
                    }
                    else if (enumerator.Name == "Alignment")
                    {
                        this.alignment = (MenuAlignment)enumerator.Value;
                    }
                    else if (enumerator.Name == "MenuType")
                    {
                        this.menuType = (MenuType)enumerator.Value;
                    }
                }
            }

 

序列化避免异常的一种解决思路

原文:http://www.cnblogs.com/llcdbk/p/4725546.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!