byte[]を使用してファイルを作成したいのですが、どれが最適ですか。
byte[] content=File.ReadAllBytes(@"C:\ServiceLog.txt");
FileStream stream = new FileStream(@"C:\ServiceLog1.txt", FileMode.Create, FileAccess.ReadWrite);
stream.Write(content, 0, content.Length);
stream.Close();
また
File.WriteAllBytes(@"C:\12.txt",content);