How should I deal with methods with default arguments when passing the border between C# and C++/CLI?
C# does support default arguments, but C++/CLI does not. That means in C++/CLI I must have two different methods one with the parameter that has default value, and one without which assumes the default value. What about in C#, should I have two separate methods also, or can I get way with one, and then the propagation to C++/CLI's two methods will be fine.
Thanks