• 大小: 42KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: C#
  • 标签: c#  

资源简介

封装了c#操作xml序列化和反序列化,写了一个学习demo,仅供参考

资源截图

代码片段和文件信息

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

namespace xmlRWdemo
{
    class Program
    {
        static void Main(string[] args)
        {
            string path = @“.\test.xml“;
            xmlModel mode = new xmlModel();
            mode.P1 = 2;
            mode.P2 = “test“;

            xmlModel2 mode2 = new xmlModel2();
            mode2.p1 = 3;
            mode.P3 = mode2;

            ListlModel2> lst = new ListlModel2>();
            for (int i = 0; i < 10; i++)
            {
                lst.Add(new xmlModel2() { p1 = i });
            }
            mode.P4 = lst;

            xmlTool.xmlSerializerlModel>(path mode);

            xmlModel re_mode = new xmlModel();
            re_mode = xmlTool.xmlDeSerializerlModel>(path);
            
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-17 16:55  xmlRWdemo\
     目录           0  2018-08-17 16:55  xmlRWdemo\.vs\
     目录           0  2018-08-17 16:55  xmlRWdemo\.vs\xmlRWdemo\
     目录           0  2018-08-17 16:55  xmlRWdemo\.vs\xmlRWdemo\v14\
     文件       45568  2018-08-18 08:23  xmlRWdemo\.vs\xmlRWdemo\v14\.suo
     目录           0  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\
     文件         189  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\App.config
     文件         902  2018-08-18 08:22  xmlRWdemo\xmlRWdemo\Program.cs
     目录           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\Properties\
     文件        1340  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\Properties\AssemblyInfo.cs
     文件         942  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\xmlModel.cs
     文件        2813  2018-08-17 17:09  xmlRWdemo\xmlRWdemo\xmlRWdemo.csproj
     文件        2343  2018-08-17 17:00  xmlRWdemo\xmlRWdemo\xmlTool.cs
     目录           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\bin\
     目录           0  2018-08-18 08:19  xmlRWdemo\xmlRWdemo\bin\Debug\
     文件        7168  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.exe
     文件         189  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.exe.config
     文件       19968  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.pdb
     文件       22696  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.vshost.exe
     文件         189  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.vshost.exe.config
     文件         490  2017-03-19 05:00  xmlRWdemo\xmlRWdemo\bin\Debug\xmlRWdemo.vshost.exe.manifest
     文件         522  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\bin\Debug\test.xml
     目录           0  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\bin\Release\
     目录           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\obj\
     目录           0  2018-08-17 17:09  xmlRWdemo\xmlRWdemo\obj\Debug\
     文件        6872  2018-08-17 17:00  xmlRWdemo\xmlRWdemo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\obj\Debug\TempPE\
     文件           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2018-08-17 16:55  xmlRWdemo\xmlRWdemo\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     文件         436  2018-08-18 08:23  xmlRWdemo\xmlRWdemo\obj\Debug\xmlRWdemo.csproj.FileListAbsolute.txt
............此处省略4个文件信息

评论

共有 条评论