I want to migrate a c++ code to c# , in my c++ code i am using a public key for testing using a hard coded value like this :
static unsigned char PubKeyModulus[] = {
"\xCA\x68\x77\....."
"\x17\x55\x79\..."
"\xF5\xD2\...."
"\x2B\xE4\..."
"\x7F\xC5\..."
"\xEA\x19\..."
"\x83\x67\..."
"\x68\xEF\..."
"\x57\x72\..."
"\x0F\xE5\..."
"\xD0\xBD\..."
"\x21\x21\..."
"\x11\x63\..."
"\x05\xFB\..."
"\x44\x7A\..."
"\xD3\x19\..."
};
how can i use this value in C# code.