Example #1
0
 public static async Task <ushort> ReadUInt16(this Stream stream)
 {
     return(LittleEndianConverter.ConvertToUInt16(await stream.ReadBytes(2)));
 }