System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ReadContentAsInt C# (CSharp) Méthode

ReadContentAsInt() private méthode

private ReadContentAsInt ( ) : int
Résultat int
        internal int ReadContentAsInt()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Int32");

            return reader.ReadContentAsInt();
        }
XmlReaderDelegator.XmlReaderDelegator