How can I declare a managed method in C++/CLI that has an optional parameter when used from C#?
I\'ve decorated the parameter with both an Optional and a DefaultPara
As a workaround, you can just overload the constructor, and use delegation. It will be inlined by the JIT and should end up with the same final result as a default parameter value.