1
vote
Scientific data visualization and the .NET framework
At Resolver Systems we're working on a project called Ironclad, which will …
0
votes
C# USING keyword - when and when not to use it?
To add to the other answers, you should use using (or an explicit Dispose) whenever an object holds any resources other than managed memory. Examples would be things like files, socket …
5
votes
Issues with embedding IronPython 2 in a C# web application
Once the assembly's loaded, you can execute the import in the Scope you're using to run the script:
ScriptEngine engine = Python.CreateEngine();
engine.Runtime.LoadAsse …
