コード例 #1
0
        public UInt16 ReadUInt16()
        {
            byte[] bytes  = ReadBytes(2);
            UInt16 result = ByteUtilities.ToUInt16(bytes);

            return(result);
        }
コード例 #2
0
ファイル: ByteArray.cs プロジェクト: MindSwipe/Quic.NET
        public ushort ReadUInt16()
        {
            var bytes = ReadBytes(2);

            return(ByteUtilities.ToUInt16(bytes));
        }