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.
ファイルとやり取りできるように、ファイルを変数に入れたいと思っています。たとえば、別のファイルを配布することなく、wav ファイルを変数に入れて再生することができます。これは、たとえば Base64 を使用して可能ですか。たとえば、コードに画像が埋め込まれている Python プログラムをいくつか見たことがあります。
Yes, you could conceivably store the contents of a binary .wav file as a static, uuencoded text array.
Probably a better way to go about it would be to create a "resource" for your binary data:
http://msdn.microsoft.com/en-us/library/xbx3z216.aspx