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

ReadContentAsSingle() 개인적인 메소드

private ReadContentAsSingle ( ) : float
리턴 float
        internal float ReadContentAsSingle()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Float");

            return reader.ReadContentAsFloat();
        }
XmlReaderDelegator.XmlReaderDelegator