Glare.ExtensionMethods.ReadNormalizedUInt16 C# (CSharp) Method

ReadNormalizedUInt16() public static method

Read a NormalizedUInt16.
public static ReadNormalizedUInt16 ( this reader ) : NormalizedUInt16
reader this
return NormalizedUInt16
        public static NormalizedUInt16 ReadNormalizedUInt16(this BinaryReader reader)
        {
            return NormalizedUInt16.CreateCoded(reader.ReadUInt16());
        }
ExtensionMethods