> For the complete documentation index, see [llms.txt](https://tim-entertainment.gitbook.io/tim.console/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tim-entertainment.gitbook.io/tim.console/commands/cmdformula-c.md).

# CmdFormula C\#

`CmdFormula` contains a list of `CmdFormulaPart`, and a type of space between them:   or `_`

You can create new `CmdFormula` in your script like this:

```
CmdFormula formula = new CmdFormula()
{
    SpaceType = CmdSpaceType.Space,
    Parts = new List<CmdFormulaPart>()
    {
        new CmdFormulaPart("Download_image"),
        new CmdFormulaPart(CmdPartType.String, "URL")
    }
};
```

{% hint style="info" %}
Just don't forget that you can't use your space symbol in Parts in **Sentence** and **Enum variants**
{% endhint %}
