私は次のものを持っています:
array<Point>^ ADC1=gcnew array<Point>(2);
ADC1={Point(period,points[0][0]),Point(period,points[0][1])}; // error here!
ただし、コードをコンパイルしようとすると、次のエラーが発生します。
エラーC2059:構文エラー:'{'
エラーは、ADC1={..。の行にあります。
periodはintであり、pointsはint値を持つ2D配列です。
誰かが私を助けることができますか?
前もって感謝します