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.
我在我的应用程序的资源属性中放置了一个 dll 文件(来自 myappProperties>>Resources>>添加现有文件)。
现在我希望我的应用程序将此文件复制到硬盘驱动器上的目标位置。
这甚至可能吗?
我通常以二进制格式(字节数组)存储资源文件(dll、png 等)。 在运行时我这样做:
path = ... File.WriteAllBytes(path, Resources.binaryStuff);
其中 Resources 是应用程序的资源实例。