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

DateTimeToAtomicValue() public static method

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