IronPython - Carrega o script da string no aplicativo C # 4.0

Eu tenho o seguinte código (apenas um teste):

var engine = Python.CreateEngine();
var runtime = engine.Runtime;

    try
    {                
        dynamic test = runtime.UseFile(@"d:\test.py");

        test.SetVariable("y", 4);
        test.SetVariable("client", UISession.ControllerClient);
        test.Simple();
    }
    catch (Exception ex)
    {
        var eo = engine.GetService<ExceptionOperations>();
        Console.WriteLine(eo.FormatException(ex));
    }

Mas eu gostaria de carregar o script de uma string.

questionAnswers(2)

yourAnswerToTheQuestion