Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
scope.SetVariable("math", ?? typeof(System.Math) ??);
还是我需要创建一个模块?
你可以做:
scope.SetVariable("math", DynamicHelpers.GetPythonTypeFromType(typeof(System.Math)));
DynamicHelpers 在 IronPython.Runtime.Types 中。