• 大小: 3.46KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: Xml  C#  c  序列化  反序列化  

资源简介

C# xml序列化和反序列化

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.xml.Serialization;

namespace XStream
{
    [xmlRoot(“PublicSetting“)]
    public class ConfigEntity
    {
        private SystemNode _systemNode;
        private Other _other;

        [xmlElement(“Other“)]
        public Other other
        {
            set { _other = value; }
            get { return _other; }
        }

        [xmlElement(“System“)]
        public SystemNode systemNode
        {
            set {_systemNode = value; }
            get { return _systemNode; }
        }

        //         public DBConfig dbConfig
        //         {
        //             set { _dbConfig = value; }
        //             get {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6865  2017-07-20 17:58  PublicSetting.cs
     文件        2186  2017-07-18 15:44  xmlSerializeUtil.cs
     文件        6078  2017-07-20 14:06  ConfigEntity.cs

评论

共有 条评论