#include "stdafx.h" int main() { array<int, 2>^ managed_array_2D = gcnew array<int, 2>(2, 2) { { 1, 0 }, { 0, 1 } }; }