标签: c# static ironpython dynamic-language-runtime
scope.SetVariable(“math”,?? typeof(System.Math)??);
还是需要创建模块?
答案 0 :(得分:6)
你可以这样做:
scope.SetVariable(“math”,DynamicHelpers.GetPythonTypeFromType(typeof(System.Math)));
DynamicHelpers位于IronPython.Runtime.Types。