Development VB.Net

Imports System
Imports Microsoft.VisualBasic
Module GetBytesUInt16Demo
    Sub GetBytesUInt16( argument As UInt16 )
        Dim byteArray As Byte( ) = BitConverter.GetBytes( argument )
        Console.WriteLine( BitConverter.ToString( byteArray ) )
    End Sub 
    Sub Main( )
        GetBytesUInt16( Convert.ToUInt16( 10000 ) )
    End Sub 
End Module