Hello.
I have a strange problem in VS 2008. I have ascii - codes of simbols and I want to have a String^ variable as result of converting. That is my code:
int arr[10];//array with ascii codes of simbols.
...
unsigned char a;
String^ str;
for ( int i = 0; i<10; i++)
{
a = arr[i];
str+=Convert::ToString(a);
}
But if in arr = 178, for example, i dont get '▓' in var a, but some another simbol.