Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created October 1, 2013 18:35
Show Gist options
  • Save thecodejunkie/6782971 to your computer and use it in GitHub Desktop.
Save thecodejunkie/6782971 to your computer and use it in GitHub Desktop.
Should emit a file in UTF8 without BOM but the BOM is in the file =/
var encoding =
new UTF8Encoding(false);
File.WriteAllText(Path.Combine(outputFolder, SourceFile), result.Body.AsString(), encoding);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment