hello I'm trying to convert an int value to 16 bit unsigned char type (USHORT) in example 41104 is A909 in ushort
but in c# i tried code samples as
byte[] bytes = BitConverter.GetBytes(41104);
string bytes = BitConverter.ToString(byteArray);
//it reurns "90-A0"
(with the http://msdn.microsoft.com/tr-tr/library/8wwsdz3k.aspx msnd help)
so how to get A909 value as ushort for 41104 ?
thnx