Startup is a simple method with void return and no parameters. It is called once the primary classes in the FVTerm application are initialized so is more integrated than simply using a static constructor.
Startup can be used to load any data cached during the Shutdown method when the IIS FVTerm v4.0 process is recycled, stopped and started or other disruption to a live server.
Example:
static public void Startup()
{
// Check for a cache file and load
}