Ho modificato l'esempio fornito con la nuova versione di Roslyn rilasciata ieri per utilizzare dynamic e ExpandoObject ma ricevo un errore del compilatore che non sono sicuro di come risolvere. L'errore è:
(7,21): errore CS0656: membro richiesto del compilatore mancante 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create'
Non puoi ancora usare le dinamiche nel nuovo compilatore? Come posso risolvere questo problema? Ecco l'esempio che ho aggiornato:
[TestMethod]
public void EndToEndCompileAndRun()
{
var text = @"using System.Dynamic;
public class Calculator
{
public static object Evaluate()
{
dynamic x = new ExpandoObject();
x.Result = 42;
return x.Result;
}
}";
var tree = SyntaxFactory.ParseSyntaxTree(text);
var compilation = CSharpCompilation.Create(
"calc.dll",
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
syntaxTrees: new[] {tree},
references: new[] {new MetadataFileReference(typeof (object).Assembly.Location), new MetadataFileReference(typeof (ExpandoObject).Assembly.Location)});
Assembly compiledAssembly;
using (var stream = new MemoryStream())
{
var compileResult = compilation.Emit(stream);
compiledAssembly = Assembly.Load(stream.GetBuffer());
}
Type calculator = compiledAssembly.GetType("Calculator");
MethodInfo evaluate = calculator.GetMethod("Evaluate");
string answer = evaluate.Invoke(null, null).ToString();
Assert.AreEqual("42", answer);
}
dynamic
stato introdotto.