• 大小: 0.03M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: Xml  实例  C#  c  

资源简介

c#读写xml实例(仅读写)

资源截图

代码片段和文件信息

//Download by http://www.NewXing.com
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

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

        private void ShowPerson()
        {
            DataSet myDataSet = new DataSet();
            myDataSet.Readxml(“Person.xml“);
            dataGridView1.DataSource = myDataSet.Tables[“student“];
        }
        private void Form1_Load(object sender EventArgs e)
        {
            ShowPerson();
     

        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1245  2011-07-30 14:57  Properties\AssemblyInfo.cs

     文件       2876  2011-07-30 14:57  Properties\Resources.Designer.cs

    .......      5612  2007-01-03 15:31  Properties\Resources.resx

     文件       1143  2011-07-30 14:57  Properties\Settings.Designer.cs

    .......       249  2007-01-03 15:31  Properties\Settings.settings

     文件        714  2011-07-30 14:57  Form1.cs

     文件       2463  2011-07-30 14:57  Form1.Designer.cs

     文件       5814  2007-01-03 15:37  Form1.resx

     文件        505  2011-07-30 14:57  Program.cs

     文件       3429  2010-02-08 15:26  Readxml.csproj

     文件        903  2010-02-08 15:26  Readxml.sln

    .......      2373  2007-06-04 17:37  bin\Debug\PERSON.xml

    .......      8192  2010-02-16 12:06  bin\Debug\Readxml.exe

    .......     32256  2010-02-16 12:06  bin\Debug\Readxml.pdb

    .......     14328  2010-02-16 12:06  bin\Debug\Readxml.vshost.exe

    .......       490  2009-06-11 05:14  bin\Debug\Readxml.vshost.exe.manifest

     文件       1999  2011-07-30 14:57  obj\Debug\Readxml.csproj.FileListAbsolute.txt

    .......       847  2010-02-08 15:26  obj\Debug\Readxml.csproj.GenerateResource.Cache

    .......      8192  2010-02-16 12:06  obj\Debug\Readxml.exe

    .......       180  2010-02-08 15:26  obj\Debug\Readxml.Form1.resources

    .......     32256  2010-02-16 12:06  obj\Debug\Readxml.pdb

    .......       180  2010-02-08 15:26  obj\Debug\Readxml.Properties.Resources.resources

    .......      4608  2010-02-08 15:26  obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     目录          0  2010-02-08 15:26  obj\Debug\TempPE

     目录          0  2010-02-08 15:26  bin\Debug

     目录          0  2009-04-23 14:15  bin\Release

     目录          0  2010-02-16 12:06  obj\Debug

     目录          0  2009-04-23 17:24  Properties

     目录          0  2009-04-23 14:15  bin

     目录          0  2010-02-08 15:26  obj

............此处省略3个文件信息

评论

共有 条评论