P
Peter Oliphant
I'm using VC++ 2005 Express in /cli mode, and I'm trying to initialize an
array of integers. Something like:
array<int> int_array ;
int_array = gcnew array<int>(3) ;
int_array = { 0x3, 0x9, 0x7 } ; // error here
How is this done? Thanx in advance...
array of integers. Something like:
array<int> int_array ;
int_array = gcnew array<int>(3) ;
int_array = { 0x3, 0x9, 0x7 } ; // error here
How is this done? Thanx in advance...