monogatari

« NemerleCodeProvider | Main | The truth on RELAX NG, XML Schema and XML serialization »

Hello, XQuery

I've been apart from cvs log history for a while, because I was XQuery pregnant.

using System.IO; using System.Xml; using System.Xml.Query; public class Test { public static void Main () { XQueryCommand cmd = new XQueryCommand (); cmd.Compile (new StringReader ("<doc>hello, XQuery.</doc>")); cmd.Execute ((XmlResolver) null, new XmlTextWriter (System.Console.Out)); } }
_@r50 ~/tests/xml2_0/xquery
$ csc hello.cs -r:System.Data.SqlXml.dll -nologo

_@r50 ~/tests/xml2_0/xquery
$ ./hello
<doc>hello, XQuery.</doc>
_@r50 ~/tests/xml2_0/xquery
$ mono hello.exe
<doc>hello, XQuery.</doc>

Not sure when I can leave this hospital.

|