本文整理汇总了C#中XElement.Save方法的典型用法代码示例。如果您正苦于以下问题:C# XElement.Save方法的具体用法?C# XElement.Save怎么用?C# XElement.Save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XElement
的用法示例。
在下文中一共展示了XElement.Save方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
private static void Main()
{
helper.ConsoleMio.Setup();
helper.ConsoleMio.PrintHeading("Extract Contact Information");
string selctedFile = SelectFileToOpen();
string saveLocation = SelectSaveLocation();
var contactInfo = new XElement("person");
using (var inputStream = new StreamReader(selctedFile))
{
string currentLine;
while ((currentLine = inputStream.ReadLine()) != null)
{
string[] args = currentLine.Split(' ');
string tag = args[0];
string content = string.Join(" ", args.Skip(1).ToArray());
contactInfo.Add(new XElement(tag, content));
}
}
contactInfo.Save(saveLocation);
helper.ConsoleMio.PrintColorText("Completed\n ", ConsoleColor.Green);
helper.ConsoleMio.Restart(Main);
}
示例2: M
void M()
{
XElement rootElement =
new XElement("DataSources",
new XComment(string.Format("Made with {0} on {1}", madeWith, madeOn)),
new XElement("DataSource", new XAttribute("Name", this.txtLinkName.Text),
new XElement("SelectedLayer", new XAttribute("SelectedColumn", this.lblSelectedLayerColumn.Text)),
new XElement("ShowLayerColumns", new XText("*")),
new XElement("SelectedProvider", new XAttribute("Name", this.lblSelectedProvider.Text), new XText(this.txtFileOpen.Text)),
new XElement("SelectedProviderTable", new XAttribute("SelectedColumn", this.lblSelectedDataSourceColumn.Text), new XText(this.lblSelectedTable.Text)),
new XElement("ShowDataSourceColumns", new XText("*"))
));
rootElement.Save(this.lblFilename.Text);
}