1: 2: 3: 4: 5: 6: 7: 8: 9:
int main(array ^args) { UCHAR VendorInformation[] = {'a', 'b', 'c'}; System::String ^VendorInfoString = gcnew System::String((char*)VendorInformation); Console::WriteLine(VendorInfoString); Console::ReadKey(); return 0; }