Skip to content

Instantly share code, notes, and snippets.

@emaame
emaame / Converter.cs
Last active May 15, 2025 07:24
UTF-8 with BOM に一括変換する C# コード
using Microsoft.Extensions.Logging;
using System.Text;
using ZLogger;
namespace CharCodeConverter;
public record ConverterArgument(string RootDir, Encoding[] Encodings);
public static class Converter
{