• 大小: 0.20M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  Xml  增删查改  

资源简介

这篇文章(https://www.daboke.com)主要介绍了使用C#快速上手XML的增删查改操作的方法。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.xml;
using System.IO;


namespace xmlSample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        DataSet dataSet = new DataSet();//声明此数据集,存储读取出的xml数据

        /// 
        /// 创建xml的方法
        /// 

        /// 
        /// 
        private void Button5_Click(object sender EventArgs e)
        {
            //创建一个xml文档
            xmlDocument doc = new xmlDocument();
            //创建第一行描述信息
            xmlDeclarati

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-04-16 11:01  xmlSample\
     目录           0  2020-04-16 11:01  xmlSample\.vs\
     目录           0  2020-04-16 11:01  xmlSample\.vs\xmlSample\
     目录           0  2020-04-16 11:01  xmlSample\.vs\xmlSample\v16\
     文件       47104  2020-04-16 20:46  xmlSample\.vs\xmlSample\v16\.suo
     目录           0  2020-04-16 11:01  xmlSample\.vs\xmlSample\v16\Server\
     目录           0  2020-04-16 20:46  xmlSample\.vs\xmlSample\v16\Server\sqlite3\
     文件           0  2020-04-16 11:01  xmlSample\.vs\xmlSample\v16\Server\sqlite3\db.lock
     文件      573440  2020-04-16 20:46  xmlSample\.vs\xmlSample\v16\Server\sqlite3\storage.ide
     目录           0  2020-04-16 20:45  xmlSample\xmlSample\
     目录           0  2020-04-16 15:52  xmlSample\xmlSample\bin\
     目录           0  2020-04-16 20:47  xmlSample\xmlSample\bin\Debug\
     文件       20480  2020-04-16 20:45  xmlSample\xmlSample\bin\Debug\xmlSample.exe
     文件       36352  2020-04-16 20:45  xmlSample\xmlSample\bin\Debug\xmlSample.pdb
     目录           0  2020-04-16 15:52  xmlSample\xmlSample\bin\Release\
     文件        8475  2020-04-16 20:45  xmlSample\xmlSample\Form1.cs
     文件       29169  2020-04-16 19:29  xmlSample\xmlSample\Form1.Designer.cs
     文件        5817  2020-04-16 19:29  xmlSample\xmlSample\Form1.resx
     目录           0  2020-04-16 11:01  xmlSample\xmlSample\obj\
     目录           0  2020-04-16 19:46  xmlSample\xmlSample\obj\Debug\
     文件        1423  2020-04-16 18:15  xmlSample\xmlSample\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6899  2020-04-16 15:52  xmlSample\xmlSample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2020-04-16 11:01  xmlSample\xmlSample\obj\Debug\TempPE\
     文件          42  2020-04-16 15:52  xmlSample\xmlSample\obj\Debug\xmlSample.csproj.CoreCompileInputs.cache
     文件         847  2020-04-16 14:45  xmlSample\xmlSample\obj\Debug\xmlSample.csproj.FileListAbsolute.txt
     文件        1012  2020-04-16 19:36  xmlSample\xmlSample\obj\Debug\xmlSample.csproj.GenerateResource.cache
     文件        2201  2020-04-16 19:46  xmlSample\xmlSample\obj\Debug\xmlSample.csprojAssemblyReference.cache
     文件       20480  2020-04-16 20:45  xmlSample\xmlSample\obj\Debug\xmlSample.exe
     文件         180  2020-04-16 19:36  xmlSample\xmlSample\obj\Debug\xmlSample.Form1.resources
     文件       36352  2020-04-16 20:45  xmlSample\xmlSample\obj\Debug\xmlSample.pdb
     文件         180  2020-04-16 15:54  xmlSample\xmlSample\obj\Debug\xmlSample.Properties.Resources.resources
............此处省略9个文件信息

评论

共有 条评论