Jump to content

willsmannar

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    India

Everything posted by willsmannar

  1. In C# you can do it programmatically . Read those file one by one and store it ino a string and finally write the string to a single file. string line = null; System.IO.TextReader readFile = new StreamReader("filename.txt"); line = line + readFile.ReadToEnd(); read three files and write file write file System.IO.TextWriter writeFile = new StreamWriter("filename.txt"); writeFile.WriteLine("line"); check this link. http://csharp.net-informations.com/file/csharp-textwriter.htm wills.
×
×
  • Create New...