How to convert C++/CLI array to String or standard C array

Richard Dinoso

I have a managed array:

array<unsigned char>^ myGcArray;

Assume the array is null terminated. I want to display the contents using Console::WriteLine(). What's the easiest way to convert myGcArray to String ?

One of the constructors to String has a parameter of const char*, so if I can convert myGcArray to that, then it would work too. How should I do that?

I can copy the contents of myGcArray to a regular unsigned char myarray[], but is that the best way?

Thank you.

t3chb0t

You have to use the proper encoding. If you have no idea then get started with

String^ str = System::Text::Encoding::Default->GetString(myGcArray);

by Hans Passant

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to convert C++/CLI array to String or standard C array

From Dev

Convert C++/CLI String Array into a vector of strings

From Dev

How to Convert a String Array to a Char * Array c++

From Dev

How do I convert a string containing an array to an array in c#

From Dev

C++ How to convert char pointer array to string array?

From Dev

C# Convert string to array

From Dev

convert string to array | c#

From Dev

How to convert a string into a Standard C File ?

From Dev

How to create convert a comma separated string into a string array in C

From Dev

Convert a string array to collection of string in c#

From Dev

How do I convert a C# List<string[]> to a Javascript array?

From Dev

How do I convert an unsigned char array into a string in C?

From Dev

How to convert a sub-range of a byte array to a String in C#

From Dev

cgo - How to convert string to C fixed char array

From Dev

How to convert decimal string value to hex byte array in C#?

From Dev

How to convert the contents of a Java byte array to C string in JNI?

From Dev

How to convert a sub-range of a byte array to a String in C#

From Dev

How do I convert an unsigned char array into a string in C?

From Dev

How to convert a UUID that saved in an array of bytes into a string (c++)

From Dev

How do I convert string array values to object in c#

From Dev

Convert a Swift Array of String to a to a C string array pointer

From Dev

Convert a Swift Array of String to a to a C string array pointer

From Dev

How to order an array in managed C++/CLI

From Dev

Convert string vector to char array in c++

From Dev

Convert Byte Array to string of numbers [c#]

From Dev

How to convert an array to a string

From Dev

How to convert array to string

From Dev

How to convert a string into an array?

From Dev

How to convert string to an array

Related Related

  1. 1

    How to convert C++/CLI array to String or standard C array

  2. 2

    Convert C++/CLI String Array into a vector of strings

  3. 3

    How to Convert a String Array to a Char * Array c++

  4. 4

    How do I convert a string containing an array to an array in c#

  5. 5

    C++ How to convert char pointer array to string array?

  6. 6

    C# Convert string to array

  7. 7

    convert string to array | c#

  8. 8

    How to convert a string into a Standard C File ?

  9. 9

    How to create convert a comma separated string into a string array in C

  10. 10

    Convert a string array to collection of string in c#

  11. 11

    How do I convert a C# List<string[]> to a Javascript array?

  12. 12

    How do I convert an unsigned char array into a string in C?

  13. 13

    How to convert a sub-range of a byte array to a String in C#

  14. 14

    cgo - How to convert string to C fixed char array

  15. 15

    How to convert decimal string value to hex byte array in C#?

  16. 16

    How to convert the contents of a Java byte array to C string in JNI?

  17. 17

    How to convert a sub-range of a byte array to a String in C#

  18. 18

    How do I convert an unsigned char array into a string in C?

  19. 19

    How to convert a UUID that saved in an array of bytes into a string (c++)

  20. 20

    How do I convert string array values to object in c#

  21. 21

    Convert a Swift Array of String to a to a C string array pointer

  22. 22

    Convert a Swift Array of String to a to a C string array pointer

  23. 23

    How to order an array in managed C++/CLI

  24. 24

    Convert string vector to char array in c++

  25. 25

    Convert Byte Array to string of numbers [c#]

  26. 26

    How to convert an array to a string

  27. 27

    How to convert array to string

  28. 28

    How to convert a string into an array?

  29. 29

    How to convert string to an array

HotTag

Archive