如何在C#中修复“ System.ArgumentException”?

时间:2019-08-16 17:30:36

标签: c# codedom

我正在从事一个涉及编译代码的小型项目。我不断收到此错误:mscorlib.dll路径中的非法字符发生了'System.ArgumentException'类型的未处理异常。

我尝试查找问题的根源,这行代码似乎是问题所在:CompilerResults cr = provider.CompileAssemblyFromFile(parameters, source1);

这是我上课的代码:

using System.IO;
using Microsoft.CSharp;
using System.CodeDom.Compiler;


namespace Plugin___Prototype
{
    class CompileCode
    {
        public void Compile()
        {
            string source1 = File.ReadAllText(System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\test.cs");
            //string source2 = File.ReadAllText(@"Source path here");
            Console.WriteLine(source1);
            CSharpCodeProvider provider = new CSharpCodeProvider();
            CompilerParameters parameters = new CompilerParameters();
            parameters.ReferencedAssemblies.Add("System.dll");
            parameters.GenerateExecutable = true;
            parameters.OutputAssembly = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\app1.exe";
            Console.WriteLine(parameters.OutputAssembly);
            parameters.GenerateInMemory = false;
            CompilerResults cr = provider.CompileAssemblyFromFile(parameters, source1);

            if (cr.Errors.Count == 0)
                Console.WriteLine("No Errors");
            else
            {
                foreach (CompilerError error in cr.Errors)
                    Console.WriteLine(error.ErrorText);
            }

            Console.ReadLine();
        }
    }
}

这是输出:

An unhandled exception of type 'System.ArgumentException' occurred in mscorlib.dll
Illegal characters in path.

The program '[14128] Plugin - Prototype.exe' has exited with code -1 (0xffffffff). 

我的预期结果是app1.exe在我的文档文件夹中生成。

编辑:这些是source1的内容:

// A Hello World! program in C#.
using System;
namespace HelloWorld
{
    class Hello
    {
        static void Main()
        {
            Console.WriteLine("Hello World!");

            // Keep the console window open in debug mode.
            Console.WriteLine("Press any key to exit.");
            Console.ReadKey();
        }
    }
}

1 个答案:

答案 0 :(得分:1)

我已修复它,CompilerResults cr = provider.CompileAssemblyFromFile(parameters, source1);,希望该文件而不是文件内容。