Update FileImpl.cs

This commit is contained in:
KingLuigi4932 2017-09-01 00:04:08 -07:00 committed by GitHub
parent d5cedcf1cf
commit 4e10bcdcfc

View file

@ -139,6 +139,8 @@ namespace Cosmos.System_Plugs.System.IO
public static void WriteAllLines(string aFile, string[] contents)
{
string text = String.Join(Environment.NewLine, contents);
Global.mFileSystemDebugger.SendInternal("Writing contents");
Global.mFileSystemDebugger.SendInternal(text);
WriteAllText(aFile, text);
}