System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ReadContentAsInt C# (CSharp) 메소드

ReadContentAsInt() 개인적인 메소드

private ReadContentAsInt ( ) : int
리턴 int
        internal int ReadContentAsInt()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Int32");

            return reader.ReadContentAsInt();
        }
XmlReaderDelegator.XmlReaderDelegator