疑似コード トランスレータとコンパイラを構築しています。いくつかの文字列操作を実行して疑似コードをコードに変換し、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 で、次のエラーが表示されます。
しかし、このコードをそのまま 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 への参照を含めるにはどうすればよいですか?