scope.SetVariable("math", ?? typeof(System.Math) ??);
or do I need create a module?
scope.SetVariable("math", ?? typeof(System.Math) ??);
or do I need create a module?
You can do:
scope.SetVariable("math", DynamicHelpers.GetPythonTypeFromType(typeof(System.Math)));
DynamicHelpers is in IronPython.Runtime.Types.
© 2022 - 2024 — McMap. All rights reserved.