diff --git a/minisqlquery-master/src/MiniSqlQuery.Core/StringWriterWithEncoding.cs b/minisqlquery-master/src/MiniSqlQuery.Core/StringWriterWithEncoding.cs
new file mode 100644
index 0000000..b59534b
--- /dev/null
+++ b/minisqlquery-master/src/MiniSqlQuery.Core/StringWriterWithEncoding.cs
@@ -0,0 +1,45 @@
+#region License
+
+// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
+// This source code is made available under the terms of the GNU Lesser General Public License v3.0
+// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
+
+#endregion
+
+using System.IO;
+using System.Text;
+
+namespace MiniSqlQuery.Core
+{
+ /// <summary>
+ /// A <see cref = "StringWriter" /> that allows the setting of the <see cref = "Encoding" />.
+ /// </summary>
+ public class StringWriterWithEncoding : StringWriter
+ {
+ /// <summary>
+ /// The _encoding.
+ /// </summary>
+ private readonly Encoding _encoding;
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref = "StringWriterWithEncoding" /> class.
+ /// </summary>
+ /// <param name = "encoding">The encoding to use, e.g. Encoding.UTF8.</param>
+ public StringWriterWithEncoding(Encoding encoding)
+ {
+ _encoding = encoding;
+ }
+
+ /// <summary>
+ /// Gets the <see cref = "T:System.Text.Encoding" /> in which the output is written.
+ /// </summary>
+ /// <value>The encoding type.</value>
+ /// <returns>
+ /// The Encoding in which the output is written.
+ /// </returns>
+ public override Encoding Encoding
+ {
+ get { return _encoding; }
+ }
+ }
+}
\ No newline at end of file