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