Here's how to declare parameter arrays in C++/CLI:
int Add(... List<int>^ numbers) { int total = 0; for each(int i in numbers) { total += i; } return total; }