VB.NET释放资源文件里的ICO图标
我用的是VS2013在网上找了好多代码没一个能用的DimresourcesAsSystem.Resources.ResourceManager=WindowsApplic...
我用的是VS2013 在网上找了好多代码没一个能用的Dim resources As System.Resources.ResourceManager = WindowsApplication1.My.Resources.ResourceManager Dim ico As Icon = resources.GetObject("DJ音乐厅_1") Dim fs As FileStream = File.OpenWrite("DJ音乐厅_1.ico") ico.Save(fs) fs.Close()这段代码也不行 求大神
ico哪里始终是空值 不要问我文件名或路径错误 展开
ico哪里始终是空值 不要问我文件名或路径错误 展开
1个回答
展开全部
这是我的代码的一段,没改动发给你参考:
var assembly = Assembly.GetExecutingAssembly();
string win810Exe = "McVsoSDK_InstallerUnzipper.McVsoSDK_AutoInstall.McVsoSDK_AutoInstall_Win8_10.exe";
string desExe = Path.Combine(desUnZipDir, "AutoInstall_Win8_10.exe");
try
{
using (Stream input = assembly.GetManifestResourceStream(win810Exe))
using (Stream output = File.Open(desExe, FileMode.Create))
{
input.CopyTo(output);
}
}
catch (Exception ex)
{
System.Windows.MessageBox.Show(ex.Message);
}
追问
你确定是VB.NET的?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询