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

Int64ToAtomicValue() public static method

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