Share via


HOW TO:將 char * 字串轉換為 System::Byte 陣列

將 char * 字串轉換為 Byte 陣列最有效率的方式是使用 Marshal 類別。

範例

// convert_native_string_to_Byte_array.cpp
// compile with: /clr
#include <string.h>

using namespace System;
using namespace System::Runtime::InteropServices;

int main() {
   char buf[] = "Native String";
   int len = strlen(buf);

   array< Byte >^ byteArray = gcnew array< Byte >(len + 2);

   // convert native pointer to System::IntPtr with C-Style cast
   Marshal::Copy((IntPtr)buf,byteArray, 0, len);

   for ( int i = byteArray->GetLowerBound(0); i <= byteArray->GetUpperBound(0); i++ ) {
      char dc =  *(Byte^)   byteArray->GetValue(i);
      Console::Write((Char)dc);
   }
   
   Console::WriteLine();
}

Native String

請參閱

參考

使用 C++ Interop (隱含 PInvoke)