FeResPost Web Site                     FeResPost Online User Manual

VIII.0.1.2 Accessing FeResPost namespace

All classes of the FeResPost .NET assembly are defined in “FeResPost” namespace. To simplify the access to FeResPost classes and methods, it is recommended to give access to the content of the namespace.

In ruby, this is done by including FeResPost Module into the current workspace:

   ...  
   include FeResPost  
   ...

In C#, one uses using directives:

    ...  
    using FeResPost ;  
    ...

The same is true for C++.NET language, but with a different syntax:

    ...  
    using namespace FeResPost ;  
    ...