Folder structure
The folder structure of the functions in the ArupCompute menu is derived from the namespaces where your classes live.
//usings
namespace SampleLibrary.Examples
{
public static class BasicUse
{
// meta-data
public static double BasicCalc(
// inputs
)
{
// code
}
}
}
Will give a folder structure that looks like this:
tip
To keep yourself sane we recommended that your coding project structure (folders and .cs files) should follow the namespace structure.