[Python.NET] Newbie question: Howto include .NET DLL in Pythin code.
Pierre Zeeman
Pierre.Zeeman at psitek.com
Mon Sep 4 09:12:43 CEST 2006
>From the samples:
import CLR.System.Windows.Forms as WinForms
If you need to import your own, it's just CLR.<namespace>.<etc>.
I use py2exe a lot and found it necessary to add an "import CLR"
statement as well, so:
import CLR
import CLR.System.Windows.Forms as WinForms
would be my standard way of including Forms.
Hth,
Pierre
-----Original Message-----
From: pythondotnet-bounces at python.org
[mailto:pythondotnet-bounces at python.org] On Behalf Of Caolan
Sent: 31 August 2006 07:40 PM
To: pythondotnet at python.org
Subject: [Python.NET] Newbie question: Howto include .NET DLL in Pythin
code.
Hello,
I am in need of including in some Python code the namespace and classes
in a .NET C# DLL. Can anyone please give me a quick snippet that will
demonstrate how to do this?
Thanks!
-Caolan O'Domhnaill
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/pythondotnet/attachments/20060904/f54b4f17/attachment.htm
More information about the PythonDotNet
mailing list