Skip to content Skip to sidebar Skip to footer
Showing posts with the label Ironpython

Compiling An Ironpython Wpf Project To Exe

What is the best way to pack up an IronPython application for deployment? After scouring the web th… Read more Compiling An Ironpython Wpf Project To Exe

Python .net Winforms - How To Pass Info From A Textbox To A Button Click Event

Before I get into my question, I am (self) learning how Python and the .NET CLR interact with each … Read more Python .net Winforms - How To Pass Info From A Textbox To A Button Click Event

Ironpython Integration With C#/ .net

So I'm trying to develop this application that will get a captcha image from an website and try… Read more Ironpython Integration With C#/ .net

Is There A Python Equivalent To The C# ?. And ?? Operators?

For instance, in C# (starting with v6) I can say: mass = (vehicle?.Mass / 10) ?? 150; to set mass … Read more Is There A Python Equivalent To The C# ?. And ?? Operators?

Build Python Scripts And Call Methods From C#

Is there any way to make this scenario work? There is a Python script. It is built into a DLL by ru… Read more Build Python Scripts And Call Methods From C#

Trying To Cast One Object Type Into Another In Python

I have this bit of code: const ON_Curve* curve = ...; const ON_NurbsCurve* nurb = ON_NurbsCurve::C… Read more Trying To Cast One Object Type Into Another In Python

Determining When A Process Has Finalized Initialization

I'm building an IronPython module that initializes an instance of AutoCAD and I need to return … Read more Determining When A Process Has Finalized Initialization

Python Equivalent To C#'s Using Statement

Possible Duplicate: What is the equivalent of the C# “using” block in IronPython? I'm writing… Read more Python Equivalent To C#'s Using Statement