How do I create a function which accepts a variable argument list in C++/CLI? I am looking to create a function which forwards most of it s arguments to String::Format
.
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...