如何在Android上使用Xamarin表单执行脚本

时间:2018-07-06 14:28:59

标签: android xamarin scripting mono roslyn

我正在尝试在Android Mono上使用Xamarin Forms运行C#脚本。 运行脚本时出现错误: System.IO.FileNotFoundException:找不到文件“ /mscorlib.dll”

这是我要执行的代码:

object result;
var script = CSharpScript.Create("DateTime.Today.Year",ScriptOptions.Default.WithImports("System"));
script.RunAsync().ContinueWith(s => result = s.Result).Wait();

0 个答案:

没有答案