CodeDom calls constructor

How can I generate code that calls another class constructor using CodeDom, I cannot find the CodeConstructorInvokeExpression expression.

+3
source share
1 answer

I believe what you are looking for CodeObjectCreateExpression.

+4
source

Source: https://habr.com/ru/post/1774105/


All Articles