FeResPost Web Site                     FeResPost Online User Manual

VIII.0.1.3 Creating class instances

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.)