# implicit operator FixedString64Bytes

> Returns a new FixedString64Bytes that is a copy of another string.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.Collections](/engine/6000.7/script-reference/unity/collections.md)
* **Assembly:** UnityEngine.ManagedKernelModule

## implicit operator FixedString64Bytes(FixedString64Byte)

Returns a new FixedString64Bytes that is a copy of another string.

```csharp
public static implicit operator FixedString64Bytes(in FixedString32Bytes fs)
```

### Parameters

**** (\[FixedString32Bytes]\(/engine/6000.7/script-reference/unity/collections/fixedstring32bytes)): A FixedString32Bytes to copy.

### Returns

| Type                                                                                          | Description                                                  |
| --------------------------------------------------------------------------------------------- | ------------------------------------------------------------ |
| [FixedString64Bytes](/engine/6000.7/script-reference/unity/collections/fixedstring64bytes.md) | A new FixedString64Bytes that is a copy of the other string. |

## implicit operator FixedString128Bytes(FixedString128Byte)

Returns a new FixedString128Bytes that is a copy of another string.

```csharp
public static implicit operator FixedString128Bytes(in FixedString32Bytes fs)
```

### Parameters

**** (\[FixedString32Bytes]\(/engine/6000.7/script-reference/unity/collections/fixedstring32bytes)): A FixedString32Bytes to copy.

### Returns

| Type                                                                                            | Description                                                   |
| ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| [FixedString128Bytes](/engine/6000.7/script-reference/unity/collections/fixedstring128bytes.md) | A new FixedString128Bytes that is a copy of the other string. |

## implicit operator FixedString512Bytes(FixedString512Byte)

Returns a new FixedString512Bytes that is a copy of another string.

```csharp
public static implicit operator FixedString512Bytes(in FixedString32Bytes fs)
```

### Parameters

**** (\[FixedString32Bytes]\(/engine/6000.7/script-reference/unity/collections/fixedstring32bytes)): A FixedString32Bytes to copy.

### Returns

| Type                                                                                            | Description                                                   |
| ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| [FixedString512Bytes](/engine/6000.7/script-reference/unity/collections/fixedstring512bytes.md) | A new FixedString512Bytes that is a copy of the other string. |

## implicit operator FixedString4096Bytes(FixedString4096Byte)

Returns a new FixedString4096Bytes that is a copy of another string.

```csharp
public static implicit operator FixedString4096Bytes(in FixedString32Bytes fs)
```

### Parameters

**** (\[FixedString32Bytes]\(/engine/6000.7/script-reference/unity/collections/fixedstring32bytes)): A FixedString32Bytes to copy.

### Returns

| Type                                                                                              | Description                                                    |
| ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- |
| [FixedString4096Bytes](/engine/6000.7/script-reference/unity/collections/fixedstring4096bytes.md) | A new FixedString4096Bytes that is a copy of the other string. |

## implicit operator FixedString32Bytes(FixedString32Byte)

Returns a new FixedString32Bytes that is a copy of another string.

```csharp
[ExcludeFromBurstCompatTesting("Takes managed string")]
public static implicit operator FixedString32Bytes(string b)
```

### Parameters

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

### Returns

| Type                                                                                          | Description                                                |
| --------------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
| [FixedString32Bytes](/engine/6000.7/script-reference/unity/collections/fixedstring32bytes.md) | A new FixedString32Bytes that is a copy of another string. |
