Answers for "combining xml files into one"

C#
1

merge xml files into one c#

using (var output = File.Create(originalFileName))
{
  foreach (var file in new[] { "File1", "File2" })
  {
    using (var input = File.OpenRead(file))
    {
      input.CopyTo(output);
    }
  }
}
Posted by: Guest on October-23-2020

Code answers related to "combining xml files into one"

C# Answers by Framework

Browse Popular Code Answers by Language