The creation of FeResPost objects depends on the language with which .NET assembly is used. In all cases, the “new” operator is used. For example to create a ClaDb object in ruby, one writes:
... db=ClaDb.new ...
The same operation is done as follows in C#:
... ClaDb db; db=new ClaDb(); ...
(Note that the variable db has been declared before being initialized.)