Adding Namespaces

Using the command

<!--#include using="[namespace]"-->

can be added to the script using statements. This has the advantage that namespace names do not always have to be specified explicitly.

Instead of calling "System.Collections.Generic.List<String> obj;" for each individual list, the call after adding "System.Collections.Generic" as a using statement would only be "List<String> obj;".

Note: This command must be executed in the script according to the preprocessor directives that apply to all script languages.