Matheus Hernandes / Publications
Forum
Converting a string to char array gets me ascii numbers
I'm trying to convert a string into a char[], in order to write a file using WriteFile from kernel32 .dll. string writethis = "abc" ; int lineSize = StringLen (writethis); uchar line[]; ArrayResize (line, lineSize); StringToCharArray (writethis, line, 0 , - 1 ); Happens that, this gives me