C # Socket send receive byte array and 626 binary conversion function

Source: Internet
Author: User

In the recent use of remote network modules,

The socket to be used to send data, the remote module instruction is 16 binary.

The official demo is a bit cumbersome. Not easy for beginners to use.

The following conversion functions are much easier for beginners to use.

//16 binary string The byte array is formatted as String sendMessage = "The FF-XX";        Private Static byte[] Hexstrtobyte (stringhexstring) {hexstring= Hexstring.replace (" ",""); if((hexstring.length%2) !=0) hexstring+=" "; byte[] Returnbytes =New byte[Hexstring.length/2];  for(inti =0; i < returnbytes.length; i++) Returnbytes[i]= Convert.tobyte (hexstring.substring (i *2,2). Trim (), -); returnreturnbytes; }        //byte array to 16 binary string         Public Static stringBYTETOHEXSTR (byte[] bytes) {            stringReturnstr =""; if(Bytes! =NULL)            {                 for(inti =0; I < bytes. Length; i++) {Returnstr+ = Bytes[i]. ToString ("X2"); }            }            returnReturnstr; }        //byte array to 16 binary simpler, using the Bitconverter.tostring method//string str0x = bitconverter.tostring (result, 0, result. Length). Replace ("-", "" ");

C # Socket send receive byte array and 626 binary conversion function

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.