From 26b924dd484a87a4e347679a3e97a729a96d572e Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Mon, 8 Apr 2019 16:31:53 -0400 Subject: [PATCH] feat: IcdStreamWriter exposes WriteLine(string) --- ICD.Common.Utils/IO/IcdStreamWriter.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ICD.Common.Utils/IO/IcdStreamWriter.cs b/ICD.Common.Utils/IO/IcdStreamWriter.cs index 9e0da04..78b7eae 100644 --- a/ICD.Common.Utils/IO/IcdStreamWriter.cs +++ b/ICD.Common.Utils/IO/IcdStreamWriter.cs @@ -17,5 +17,10 @@ namespace ICD.Common.Utils.IO public IcdStreamWriter(StreamWriter baseStreamWriter) : base(baseStreamWriter) { } + + public void WriteLine(string value) + { + WrappedStreamWriter.WriteLine(value); + } } } \ No newline at end of file