Skip to content

Instantly share code, notes, and snippets.

@thorsman99
Last active December 20, 2018 13:17
Show Gist options
  • Save thorsman99/3ef7cf54aa9359bf01687d68da79e154 to your computer and use it in GitHub Desktop.
Save thorsman99/3ef7cf54aa9359bf01687d68da79e154 to your computer and use it in GitHub Desktop.
DataRow to XML #CSharp #function #conversion #XML
static string RowToXML(DataRow DRInput)
{
DataSet myDS = new DataSet();
myDS.Tables.Add(DRInput.Table.Clone());
myDS.Tables[0].ImportRow(DRInput);
return myDS.GetXml(); ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment