I know how to create a function with variable argument list, but how do you create one when the argument type is unknown, something like MyPrintf(...) ? From what I've read CLR/C++ only supports known argument types, such as int,MyPrintf("...array<Int32>^ arr)
and the calling function
int main()
{
MyPrintf("One", "two", 3,4);
}