# implicit operator string

> Implicit conversion of DescriptorId to string.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.ProjectAuditor.Editor](/engine/6000.5/script-reference/unity/projectauditor/editor.md)
* **Assembly:** UnityEditor

## implicit operator string(Strin)

Implicit conversion of DescriptorId to string.

```csharp
public static implicit operator string(DescriptorId d)
```

### Parameters

**** (\[DescriptorId]\(/engine/6000.5/script-reference/unity/projectauditor/editor/descriptorid)): A DescriptorId to convert

### Returns

| Type                                                           | Description                       |
| -------------------------------------------------------------- | --------------------------------- |
| [string](https://learn.microsoft.com/dotnet/api/system.string) | A string representation of the ID |

## implicit operator DescriptorId(DescriptorI)

Implicit conversion of string to DescriptorId.

```csharp
public static implicit operator DescriptorId(string id)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): A string to convert

### Returns

| Type                                                                                        | Description                                    |
| ------------------------------------------------------------------------------------------- | ---------------------------------------------- |
| [DescriptorId](/engine/6000.5/script-reference/unity/projectauditor/editor/descriptorid.md) | A DescriptorId constructed using the string ID |

## implicit operator int(Int3)

Implicit conversion of DescriptorId to int.

```csharp
public static implicit operator int(DescriptorId d)
```

### Parameters

**** (\[DescriptorId]\(/engine/6000.5/script-reference/unity/projectauditor/editor/descriptorid)): A DescriptorId to convert

### Returns

| Type                                                       | Description                |
| ---------------------------------------------------------- | -------------------------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | The integer hash of the ID |
