Label1->Caption = ""; for(i = 0; i < 10; i++) Label1->Caption = Label1->Caption + IntToStr(a[i]);
char*p="test string..."; System::String *str(p);
Char Test = (char)Value;
String Test = ((char)Value).ToString();
// test12.cpp : main project file. #include "stdafx.h" using namespace System; int main(array<System::String ^> ^args) { Console::WriteLine(L"Hello World"); char * p = "test string..."; String ^str = gcnew String(p); Console::WriteLine(str); Console::ReadKey(); return 0; }