How namespace and assembly names work for IronPython types?
Have an IronPython package named "Entities". That package contains an "Entity.py" file that defines a "Customer" class and an "Address" class. If I run this program: customer = Customer() print customer.GetType().AssemblyQualifiedName address = Address() print address.GetType().AssemblyQualifiedName I get this output: IronPython.NewTypes.System.Object_1$1, Snippets.scripting, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null IronPython.NewTypes.System.Object_1$1, Snippets.scripting, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null How does that work? Why do both types have the same