blob: 5bfa699e393ce76db2b872b2a327db5e01cfff5d [file] [log] [blame]
using System;
using System.Runtime.InteropServices;
using Clearsilver;
public class CSTest {
public static unsafe int Main(string[] argv) {
Hdf h = new Hdf();
h.setValue("foo.1","1");
h.setValue("foo.2","2");
Console.WriteLine("foo.2 = {0}", h.getValue("foo.2","def"));
CSTContext cs = new CSTContext(h);
// cs.parseFile("test.cst");
Console.WriteLine(cs.render());
return 0;
}
}