Skip to content

Instantly share code, notes, and snippets.

@hvitorino
Created October 3, 2014 17:57
Show Gist options
  • Save hvitorino/a3e33db69cb8352133ed to your computer and use it in GitHub Desktop.
Save hvitorino/a3e33db69cb8352133ed to your computer and use it in GitHub Desktop.
using System.IO;
using System.Text;
public sealed class StringWriterEncoded : StringWriter
{
public override Encoding Encoding
{
get { return System.Text.Encoding.GetEncoding("Windows-1252"); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment