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

Int32ToAtomicValue() public static method

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