All generated classes currently create a constructor receiving a single IntPtr as a way to wrap a pointer to an Eo obj. This is useful in generated code but can be misleading for the API users.
We should replace it with a static Klass WrapNative(IntPtr) to better convey its meaning and cleanup the contructors list.
For interface concrete implementations (which are used when returning interfaces from methods), this method would return the actual interface instead of the concrete klass. This may help avoiding accidentally declaring Concrete variables, like used to happen in the previous Concrete/Inherit version of the C# API.