System.Windows.Media.MediaStreamSource.WAVEFORMATEX.ReadUInt16 C# (CSharp) Method

ReadUInt16() private method

private ReadUInt16 ( ) : ushort
return ushort
			private ushort ReadUInt16 ()
			{
				int a = ReadByte ();
				int b = ReadByte () << 8;
				return (ushort) (a + b);
			}