Dynamically create a text file from a C# program
- by techstu
Can I dynamically create a text file from a C# program, using data from a previously created xml file and text file, I have written half the code, but can't go any further please help
using System;
using System.IO;
using System.Xml;
namespace Task3
{
class TextFileReader
{
static void Main(string[] args)
{
String…