C# を使用して、Windows でプレーン テキスト ファイル (.txt) を base16 エンコーディングのバイト配列に読み込もうとしています。これは私が持っているものです:
FileStream fs = null;
try
{
fs = File.OpenRead(filePath);
byte[] fileInBytes = new byte[fs.Length];
fs.Read(fileInBytes, 0, Convert.ToInt32(fs.Length));
return fileInBytes;
}
finally
{
if (fs != null)
{
fs.Close();
fs.Dispose();
}
}
この内容の txt ファイルを読み取ると0123456789ABCDEF
、128 ビット (または 16 バイト) の配列が得られますが、必要なのは 64 ビット (または 8 バイト) の配列です。これどうやってするの?