dynamic language runtime - IronPython compile-time checks against CLR libraries? -
I know that IronPython is a dynamically typed language, so I'm asking that it sounds too stupid Is it possible to have an IronPython script to ensure that this change in the context of CLR libraries will not result in runtime errors when the script is executed?
The reason I ask is that I have written a library referenced by IronPathon scripts, and I want to know if I broke the interface used by IronPhon scripts while changing the C # library. Have given. While compiling code and compiling errors, it is easy to do it with other C # projects, but when IronPython compiles the script it does not seem to work.
Any thoughts?
No, your IronPathon code has not been broken in exchange for the interface; There is no way to verify from This is the nature of dynamic languages, such errors are presented on
Comments
Post a Comment