I have .net dll, i want to convert its content to char array, result will be like this
int Length=10;
unsigned char MyArray[Length] =
{
0x4D, 0x5A, 0x90, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00
};
for dll this Length may be for example 300000. Do You know any software or other way to do this?