3 references to InternalReadByte
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\BinaryReader.cs (3)
184public virtual byte ReadByte() => InternalReadByte(); 201public virtual sbyte ReadSByte() => (sbyte)InternalReadByte(); 202public virtual bool ReadBoolean() => InternalReadByte() != 0;