# AdditionalCompilerArguments

> Additional compiler arguments.

## Definition

* **Type:** Property
* **Namespace:** [UnityEditor.Compilation](/engine/6000.5/script-reference/unityeditor/compilation.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public string[] AdditionalCompilerArguments { get; set; }
```

### Remarks

Compiler arguments must be preceded by a dash (**-**) or a slash (**/**).

To get a list of available compiler arguments, see Microsoft's official documentation on compiler options.

Example: **-nowarn:1234** or **/nowarn:1234**.
