Created
October 1, 2013 18:35
-
-
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 =/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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