IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily. Use this tag for implementation-specific questions, general Python questions should just be tagged with "python".
IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily.
IronPython can be obtained at http://ironpython.net/.
Comparison of IronPython vs. C# for 'Hello World'
c#:
using System;
class Hello
{
static void Main()
{
Console.WriteLine("Hello, World");
}
}
IronPython:
print "Hello, World"
IronPython is a Dynamic Language that runs on the .NET DLR (Dynamic Language Runtime) in contrast with VB.NET and C# which are static languages.
Iron Python can also import DLL files compiled in other languages and use functions defined therein. For example:
import clr
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import *
Chat/Communication
Join our Gitter-Chat under: https://gitter.im/IronLanguages/main