C # uses pointers to assign values of different value types to a byte array

Source: Internet
Author: User

C # pointer manipulation byte array

Demo (Take the value of add short type for example):

// bytes: Destination byte array; offset: The position of the target in the byte array; value: The added type values  Public Static unsafe void Writeint16tobytes (byteint short value) {    fixed (byte * ptr = bytes)    {        * ((short *) (PTR + offset)) = value;    }}

Implementation ideas:

1. Create a pointer to the first byte of a byte array bytes

2. Locate the memory area where value is stored by increasing the offset

3. Convert the region to short (two bytes) size

4. Copy value to the range and complete the assignment of the short type variable to bytes

C # uses pointers to assign values of different value types to a byte array

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.