End Google Ads 201810 - BS.net 01 --> i have a byte array in a string that i read from a resource
i used CString for example , i can use any other string types

i want to convert a comma delimited byte array string

CString stringarr = "5,10,15,20,25";

to unsigned char[]

unsigned char myarray[]={5,10,15,20,25};

i tried some for loop but result is always different than actual data

maybe i am doing something wrong with that

can you help me please

thanks.