D
Daniel
Given the following lines of code . . .
System::Collections::Generic::List<unsigned int> ls(1000);
String^ datum = "12345";
How would I change datum into an unsigned integer value and put it in ls[0]?
I've already tried . . .
ls[0] = (unsigned int)datum;
.. . . but the compiler was not able to perform the coversion.
Daniel
System::Collections::Generic::List<unsigned int> ls(1000);
String^ datum = "12345";
How would I change datum into an unsigned integer value and put it in ls[0]?
I've already tried . . .
ls[0] = (unsigned int)datum;
.. . . but the compiler was not able to perform the coversion.
Daniel