# GetAssemblyRootNamespaceFromScriptPath(string)

> Gets the root namespace associated with the given script path.

## Definition

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

```csharp
public static string GetAssemblyRootNamespaceFromScriptPath(string sourceFilePath)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Source (script) file path.

### Returns

| Type                                                           | Description                                                                                                             |
| -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| [string](https://learn.microsoft.com/dotnet/api/system.string) | Returns the root namespace for the given script. If there is no root namespace defined for the script, it returns null. |

### Remarks

This method gets the root namespace associated with the given script path. If there is an assembly definition file associated to the given script, the root namespace defined is returned, otherwise the C# project Root Namespace in project settings is returned.
