c# - How do I convert byte to string? -
 Is changing a byte (e.g. - number -  65 ) To do this, text hex Representation? 
By default, I want to convert the bytes to the array (I am harassing the resources) their code-representations such as
  BYTE data [] = { 0x00, 0x0A, 0x00, 0x01, ...}     I have given it the  byte - & gt; "0x0A" string   
In C ++, StringStream , and ssprintf
 Some compilers can have a  IOAA  method that will convert an integer into the representation of its text. 
These are portable functions You can also add an integer of '0' to get a text digit similar to 'A' and 'A'.
Comments
Post a Comment