CSharpCodeProvider在System.Collections.Generic </t>下看不到Stack <t>类

时间:2013-05-19 23:05:54

标签: c# .net compiler-errors pseudocode csharpcodeprovider

我正在构建一个伪代码转换器和编译器。 它通过执行多个字符串操作将伪代码转换为代码,然后使用CSharpCodeProvider类来编译它,最后它尝试运行它。

经过几次测试后,如果翻译/输出代码如下:

using System;
using System.Collections.Generic;

public class TranslatedProgram
{
    public static void ReadLine(ref int destiny)
    {
        destiny = int.Parse(Console.ReadLine());
    }
    public static void InsertInStack(ref Stack<int> originalStack, int value)
    {
        Console.WriteLine("Inserting the value " + value + " to the stack.");
        originalStack.Push(value);
        foreach (int current in originalStack)
        {
            Console.WriteLine("|" + current);
        }
        Console.WriteLine("_______");
    }
    public static void Main()
    {
        int value = new int();
        Stack<int> data = new Stack<int>();
        ReadLine(ref value);
        InsertInStack(ref data, value);
    }
}

当应用程序将此代码发送到CSharpCodeProvider时,它不会编译。在compilerResults中,我收到以下错误:“找不到类型或命名空间名称'Stack'(您是否缺少using指令或程序集引用?)”(CS0246)

但是当我把这个代码完全按照原样放在VS IDE的新项目中时,它运行得很好。

有什么猜测吗?

感谢。

编辑:

我通过执行以下操作从VB调用CSharpCodeProvider编译器:

Private Sub CompileButton_Click(sender As Object, e As EventArgs) Handles CompileButton.Click
        If ApplicationSaveFileDialog.ShowDialog = Windows.Forms.DialogResult.OK Then
            Dim Compiler As New Microsoft.CSharp.CSharpCodeProvider
            Dim Results As System.CodeDom.Compiler.CompilerResults
            Results = Compiler.CompileAssemblyFromSource(New CodeDom.Compiler.CompilerParameters With {.GenerateExecutable = True, .OutputAssembly = ApplicationSaveFileDialog.FileName}, CodeTextBox.Text)
            If Results.Errors.Count = 0 Then
                Shell(ApplicationSaveFileDialog.FileName)
            Else
                For Each Exception As System.CodeDom.Compiler.CompilerError In Results.Errors
                    ExceptionsTextBox.AppendText(Exception.ErrorText)
                Next
            End If
        End If
    End Sub

我怎么能包含对System.dll的引用?

1 个答案:

答案 0 :(得分:5)

确保在编译时,您引用了Stack<>的{​​{1}} dll。

您可以使用System.dll类的属性ReferencedAssemblies添加引用:

CompilerParameters