Re: [Python.NET] Selecting an overloaded constructor + a MethodBinder.Bind patch

2010-07-28 Thread Dave
Barton writes: > > In case anyone is interested: > I have added a Constructors object named '__overloads__' to the > ClassObject.__dict__ that has the necessary machinery to select > overloaded constructors using subscript notation, as in: > from System import String, Char, Int32 > s = Strin

Re: [Python.NET] Selecting an overloaded constructor + a MethodBinder.Bind patch

2010-07-25 Thread Barton
In case anyone is interested: I have added a Constructors object named '__overloads__' to the ClassObject.__dict__ that has the necessary machinery to select overloaded constructors using subscript notation, as in: from System import String, Char, Int32 s = String.__overloads__[Char, Int32]('A