System.IO.WinRTFileStream.ReadByte C# (CSharp) Méthode

ReadByte() public méthode

public ReadByte ( ) : int
Résultat int
        public override int ReadByte()
        {
            if (!_disposed && !CanRead)
                throw Error.GetReadNotSupported();

            return _innerStream.ReadByte();
        }