var input = textBox2.Text;
var bytes = input.Split('0x').Select(i => i.Trim()).Select(i => Convert.ToByte(i, 16)).ToArray();
PS3.SetMemory(0x00D5B250, bytes);
I'm trying to be able to put bytes in this format 0x63CB23B076B55C2E only, but have it remove the "0x" out of it, then set it to memory as I have shown. But I get an error when I try this.