System.Xml.Xsl.Runtime.XmlILStorageConverter.SingleToAtomicValue C# (CSharp) Method

SingleToAtomicValue() public static method

public static SingleToAtomicValue ( float value, int index, XmlQueryRuntime runtime ) : XmlAtomicValue
value float
index int
runtime XmlQueryRuntime
return System.Xml.Schema.XmlAtomicValue
        public static XmlAtomicValue SingleToAtomicValue(float value, int index, XmlQueryRuntime runtime) {
            return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
        }