C#でバイナリファイルの読み込みサンプルコード
バイナリファイル読み込み、サンプルコード
BinaryRead.cs
public byte[] ReadFile(string filePath)
{
using (var fs = new FileStream(filePath, FileMode.Open, FileAccess.Read))
{
var buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
return buffer;
}
}
BinaryRead.cs
public byte[] ReadFile(string filePath)
{
using (var fs = new FileStream(filePath, FileMode.Open, FileAccess.Read))
{
var buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
return buffer;
}
}
Author And Source
この問題について(C#でバイナリファイルの読み込みサンプルコード), 我々は、より多くの情報をここで見つけました https://qiita.com/ajillo/items/b61b2d05bbd4180650be著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .