18 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OSCADSharp
{
internal class DefaultFileWriter : IFileWriter
{
public void WriteAllLines(string path, string[] contents)
{
File.WriteAllLines(path, contents);
}
}
}