System.Xml.XmlBinaryDictionaryReader.StreamSource.ReadByte C# (CSharp) Méthode

ReadByte() public méthode

public ReadByte ( ) : int
Résultat int
			public int ReadByte ()
			{
				if (reader.PeekChar () < 0)
					return -1;
				return reader.ReadByte ();
			}
XmlBinaryDictionaryReader.StreamSource