Dynamische C # -Kompilierung und "Microsoft.CSharp.dll" -Fehler

Ich mache das Beispiel, das gefunden werden kannHier. Daher versuche ich, IronPython in einem C # -Skript auszuführen:

Python:

def hello(name):
    print "Hello " + name + "! Welcome to IronPython!"
    return

def add(x, y):
    print "%i + %i = %i" % (x, y, (x + y))
    return

def multiply(x, y):
    print "%i * %i = %i" % (x, y, (x * y))
    return

C #:

using IronPython.Hosting;
using IronPython.Runtime;
using Microsoft.Scripting.Hosting;
using System;

namespace IntroIronPython
{
    class IronPythonMain
    {
        static void Main(string[] args)
        {
            // Create a new ScriptRuntime for IronPython
            Console.WriteLine("Loading IronPython Runtime...");
            ScriptRuntime python = Python.CreateRuntime();

            try
            {
                // Attempt to load the python file
                Console.WriteLine("Loading Python File...");
                // Create a Dynamic Type for our Python File
                dynamic pyfile = python.UseFile("PythonFunctions.py");
                Console.WriteLine("Python File Loaded!");

                Console.WriteLine("Running Python Commands...\n");

                // Call the hello(name) function
                pyfile.hello("Urda");
                …

Und von hier aus habe ich diesen Fehler: "Dynamische Operation kann nicht ohne" Microsoft.CSharp.dll "Assembly-Referenz kompiliert werden." Und ich verstehe im Ernst nicht, worum es geht. Was habe ich vergessen hinzuzufügen?

In meinen Referenzen habe ich:

Danke für eure Hilfe.

Ps: Ich bin bei MonoDevelop.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage