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

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?

How Does Ironpython Loads Modules While Being Hosted?

I'm confused about the way IronPython loads modules while being hosted. I'm using IronPytho… Read more How Does Ironpython Loads Modules While Being Hosted?

How To Create A New Msmq Message In Ironpython With Label, Reply Queue And Other Properties

I'm following this example here to use MS Message Queues with IronPython. The example works to … Read more How To Create A New Msmq Message In Ironpython With Label, Reply Queue And Other Properties

Ironpython: Message: Expected C_double, Got C_double_array_3

I’m currently developing a script using the python script editor in Rhino. As I’m currently working… Read more Ironpython: Message: Expected C_double, Got C_double_array_3

How Can I Use Requests With Ironpython?

I'm trying to run a script that was written with python 2.7, using some libraries that I've… Read more How Can I Use Requests With Ironpython?

Calling C# Object From IronPython

I have the following C# code to compile it into MyMath.dll assembly. namespace MyMath { public … Read more Calling C# Object From IronPython