Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mass10/f70d0070bc9786f5509e to your computer and use it in GitHub Desktop.
Save mass10/f70d0070bc9786f5509e to your computer and use it in GitHub Desktop.

普通にやると BOM が付いてしまい、少しハマるのでメモ...

####BOM あり

System.IO.StreamWriter writer = new System.IO.StreamWriter(
    "名前.out",
    false,
    System.text.Encoding.GetEncoding("UTF-8"));
    
writer.WriteLine(...);

####BOM なし

System.IO.StreamWriter writer = new System.IO.StreamWriter(
    "名前.out",
    false,
    new System.Text.UTF8Encoding(false));

writer.WriteLine(...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment