Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# クラス ライブラリ内にカスタム バイナリ ファイルを埋め込み、実行時にバイナリ リーダーで読み取ることはできますか?
資源次第で可能だと思います。
どうもありがとう
これを行うには、プロジェクト プロパティを介してファイルをリソースに追加します。Visual Studio は、次のコードを使用してファイルにアクセスするための便利なクラスを提供します。
byte[] theFile = myNamespace.Properties.Resources.theBinaryFile;
リソース名は theBinaryFile です。