c\#linq 기술 로 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.IO;
using System.Xml;
using System.Xml.Linq;
namespace CreateXMLByLINQ
{
public partial class Frm_Main : Form
{
public Frm_Main()
{
InitializeComponent();
}
static string strPath = "Employee.xml";
// XML
private void button1_Click(object sender, EventArgs e)
{
XDocument doc = new XDocument(// XML
new XDeclaration("1.0", "utf-8", "yes"),// XML
new XElement(textBox1.Text,// XML
new XElement(textBox2.Text, new XAttribute(textBox3.Text, textBox10.Text),// XML
new XElement(textBox4.Text, textBox5.Text),
new XElement(textBox6.Text, textBox7.Text),
new XElement(textBox8.Text, textBox9.Text))
)
);
doc.Save(strPath);// XML
MessageBox.Show("XML ");
}
}
}
<?xml version="1.0" encoding="UTF-8" standalone="true"?>
-<Peoples> -<People ID="001"> <Name>123</Name> <Sex>123</Sex> <Salary>123</Salary> </People> </Peoples>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SQL은 잊어버리고 내 친구들은 모두 LINQ를 사용합니다.Learning SQL is a pain. Using SQL is a pain. Choose .NET. Choose LINQPad. 작년 초에 저는 을 구축하고 있었고 한동안 들어가려고 했지만 (또는 지금은 EF C...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.