コード例 #1
0
ファイル: Arrays.cs プロジェクト: VerdantAutomation/GBee
 public static byte[] ToByteArray(ushort value)
 {
     return(new[] { UshortUtils.Msb(value), UshortUtils.Lsb(value) });
 }
コード例 #2
0
 public void get_lsb_test()
 {
     Assert.AreEqual(0x02, UshortUtils.Lsb(0x0102));
 }