I am trying to add new overloaded constructor to an existing type. I tried to do it with emit namespace, however created type doesnt inherit the base class and all other methods.
And after reading some articles, i decided its not possible with .net framework built-in classes.
So I got Mono.Cecil, but couldnt find any decent example how to achieve this.
I have encountered a sample which copies methods, but not props, fields etc.