Convert byte array To UInt16 - CSharp System

CSharp examples for System:Byte Array

Description

Convert byte array To UInt16

Demo Code


using System.Text;
using System;/* w ww. j  ava2 s . co m*/

public class Main{
        public static UInt16[] ToUInt16(byte[] source, int sourceOffset, int size)
        {
            var arr = new UInt16[size];
            for (int i = 0; i < size; i++)
                arr[i] = bitConverter.ToUInt16(source, sourceOffset + (i * sizeof (UInt16)));
            return arr;
        }
}

Related Tutorials