# AdditionalCompilerArguments

> Additional compiler arguments.

## Definition

* **Type:** Property
* **Namespace:** [UnityEditor.Compilation](/engine/6000.6/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](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/listed-alphabetically).

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