G
Guest
Hi
I have a line of C# code like following, and trying to rewrite it in managed C++, but failed after many try.
C# code
int[][] params = new int[length][]
C++ code I tried, but could not get it to compile
int params __gc[,] = new int __gc[length,]
Anyone knows how to the C++ code to work? Thanks in advance
George Zo
I have a line of C# code like following, and trying to rewrite it in managed C++, but failed after many try.
C# code
int[][] params = new int[length][]
C++ code I tried, but could not get it to compile
int params __gc[,] = new int __gc[length,]
Anyone knows how to the C++ code to work? Thanks in advance
George Zo