I have a string in c# which contains the following..
SMDR#0D#0APCCSMDR#0D#0A
Now as per my requirement i need to parse this into byte[] with the same formate..I have to show the byte[] as
SMDR#0D#0APCCSMDR#0D#0A
This i am needed because the my function takes arguments in this formate of byte[] and the value that i need to pass is this only..
SMDR#0D#0APCCSMDR#0D#0A
How to achieve this.Do i need to change in the string formate or byte[]..