So i have a string
string enc = ""hx0.+dhx0-pdhx0pzdhx0xx";
This is encrypted and when decrypted has the hexadecimal values, the starting values are "0xfc,0xe8,0x82,0x00"
Then this
string decrypted = encryptDecrypt(enc);
then this then i divided it after every comma to with the split command string[] hi = decrypted.Split(',');
When i check using this code
foreach (var item in hi )
{
Console.WriteLine(item.ToString());
}
it shows all the hexadecimal in side it i want to turn string array values which are 0xfc,0xe8,0x82,0x00 and more into byte array values which are 0xfc,0xe8,0x82,0x00 too not some other values