CSharp examples for System:Byte Array
Host To Network Bytes
// Copyright (c) Microsoft. All rights reserved. using System.Diagnostics; public class Main{ public static void HostToNetworkBytes(this ushort host, byte[] bytes, int index) {// www .j a va2 s . co m bytes[index] = (byte)(host >> 8); bytes[index + 1] = (byte)host; } }