i wana conver this to a cli char
static char[] BlankChars = { ' ' };
normall i would do this.
array<System::Char^>^ BlankChars;
BlankChars = gcnew array<System::Char^>(10);
BlankChars = { ' ' };
One problem i have with this way, is that i have to give that array a size, and i really dont want to , because i dont want a bunch of extra space in every array. Is there a cli array that does not require a size. Or is there a piece of code in cli that is known as undefined.
Thanks, i would normall just wing this, but my project is so big i can't be wrong, thanks all eyes and minds. good'aye!!

New Topic/Question
Reply


MultiQuote




|