• C#复杂类型序列化


    [Serializable]
    public class CardItemInfo
    {
        private int lineWidth;//线宽
        private CardItemInfo childCardItemInfo;
        public int LineWidth
        {
            get { return lineWidth; }
            set
            {
                lineWidth = value;
            }
        }
        public int ChildCardItemInfo
        {
            get { return childCardItemInfo; }
            set
            {
                childCardItemInfo = value;
            }
        }
    }

    定义列表

    private static List<CardItemInfo> listItemInfo=new List<CardItemInfo>();

    序列化到XML

    public static bool SaveXml()
            {
                CardItemInfo cardItemInfo=new CardItemInfo();
                cardItemInfo.LineWidth = 11;
                CardItemInfo childCardItemInfo=new CardItemInfo();
                childCardItemInfo.LineWidth = 22;
                cardItemInfo.ChildCardItemInfo = childCardItemInfo;
                listItemInfo.Add(cardItemInfo);
                Stream fStream = new FileStream(System.Windows.Forms.Application.StartupPath + @"	est11.xml", FileMode.Create);
                XmlSerializer xmlFormat = new XmlSerializer(typeof(List<CardItemInfo>));
                xmlFormat.Serialize(fStream, listItemInfo);//序列化对象
                return false;
            }

    从XML反序列化

    public static bool LoadFromXml(String fileName)
            {
                try
                { 
                    System.IO.Stream fStream = new FileStream(fileName, FileMode.Open);
                    XmlSerializer xmlFormat = new XmlSerializer(typeof(List<CardItemInfo>));
                    listItemInfo = (List<CardItemInfo>)xmlFormat.Deserialize(fStream);
                    fStream.Close();
                    MessageBox.Show("OK");
     
                }
                catch (Exception e)
                {
                    MessageBox.Show(e.Message);
                    return false;
                }
                return true;
            }

     博客资源:QQ群616945527,博客相关资源,同名文件。

  • 相关阅读:
    linux查看安装文件
    mysql 查询表结构
    linux回退到上次访问目录
    正则表达式匹配所有字符包括换行符
    Spring配置文件中使用表达式
    Ext 修改Store初始化加载完后修改record属性。
    数据库锁
    C#中的多线程使用 -- Thread 类详解(转)
    div背景等比例缩小
    div添加透明边框透明背景css
  • 原文地址:https://www.cnblogs.com/zhaogaojian/p/8526494.html
Copyright © 2020-2023  润新知