document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4. namespace XSD_Demo
  5. {
  6.     public partial class Form1 : Form
  7.     {
  8.         public Form1()
  9.         {
  10.             InitializeComponent();
  11.         }
  12.  
  13.         private void userInfoBindingNavigatorSaveItem_Click(object sender, EventArgs e)
  14.         {
  15.             //this simple command will save the entire in-memory dataset to a disk file.
  16.             dataSet1.WriteXml("mydata.xml");
  17.         }
  18.     }
  19. }
');