我正在使用Codedom,使用自定义图标编译单个Exes。
这是我用来指定图标文件的代码:
string temp;
temp = string.Format("/target:winexe /win32icon:{0}", testico);
cp.CompilerOptions = temp;
在这种情况下,testico是一个字符串,指定图标的位置。
现在的问题是,上面的代码只有在文件路径中没有空格时才有效。
因此,为了允许带有空格的文件路径,我将代码修改为:
string temp;
temp = string.Format("/target:winexe /win32icon:\"{0}\"", testico);
cp.CompilerOptions = temp;
不幸的是,这不起作用。
有什么想法吗? 感谢
答案 0 :(得分:2)
尝试:
\"/win32icon:{0}\"
引号围绕着整个论点