Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active February 15, 2023 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/240c47d8a3ab8debabd13be9a83eac3a to your computer and use it in GitHub Desktop.
Save GroupDocsGists/240c47d8a3ab8debabd13be9a83eac3a to your computer and use it in GitHub Desktop.
How to Convert CSV to XML in C#
// Convert the CSV data to XML format using C#
using (Converter converter = new Converter(@"path/sample.csv"))
{
WebConvertOptions options = new WebConvertOptions
{
Format = WebFileType.Xml
};
converter.Convert(@"path/CSV-to-XML.xml", options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment