mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-12 14:08:35 +00:00
18 lines
369 B
C#
18 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp.Scripting
|
|
{
|
|
internal class DefaultFileWriter : IFileWriter
|
|
{
|
|
public void WriteAllLines(string path, string[] contents)
|
|
{
|
|
File.WriteAllLines(path, contents);
|
|
}
|
|
}
|
|
}
|