CSharp examples for System:Byte Array
Convert byte array To Int16
using System.Text; using System;/*from ww w. j a va2s .com*/ public class Main{ public static Int16[] ToInt16(byte[] source, int sourceOffset, int size) { var arr = new Int16[size]; for (int i = 0; i < size; i++) arr[i] = bitConverter.ToInt16(source, sourceOffset + (i * sizeof(Int16))); return arr; } }