I am working on converting a C# project to a C++/CLI project. I came across this code and wanted to verify that I am using the proper C++/CLI syntax. I am pretty sure I am doing it wrong, just setting parameters when I want to set the size of the dimensions.
Original C#:
public double[][] _ARRAY = new double[num][];
C++/CLI:
array<double, 2>^ _ARRAY = gcnew array<double, 2>{ {num}, {} };