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

ReadContentAsDecimal() 개인적인 메소드

private ReadContentAsDecimal ( ) : decimal
리턴 decimal
        internal decimal ReadContentAsDecimal()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Decimal");

            return reader.ReadContentAsDecimal();
        }
XmlReaderDelegator.XmlReaderDelegator