Visual Studio 2015 - Visual C# - Windows Forms - .NET Framework 4.6.1
Hi im trying to write new line in a .txt file stored on Properties.Resources
I tried the following:
File.AppendAllText(Properties.Resources.myTXTfile, "LALALA" + Environment.NewLine);
And this other one:
using (var writer = new StreamWriter(Properties.Resources.myTXTfile)) { writer.WriteLine("LALALA"); }
but doesn't changes anything to my file