Skip to content

CSharp API

David Jeske edited this page May 17, 2017 · 3 revisions

Only a basic wrapper has been created for C#.

namespace Clearsilver {

  class Hdf {
     Hdf();                                       // creates a new HDF dataset
     void setValue(string name, string value);    
     string getValue(string name);
  }

  class CSTContext {
     CSTContext(Hdf hdf);
     void parseFile(string filename);
     string render();
  }

}
Clone this wiki locally