System.IO.WinRTFileStream.ReadByte C# (CSharp) 메소드

ReadByte() 공개 메소드

public ReadByte ( ) : int
리턴 int
        public override int ReadByte()
        {
            if (!_disposed && !CanRead)
                throw Error.GetReadNotSupported();

            return _innerStream.ReadByte();
        }