# Add

> Adds a new key-value pair.

## Definition

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

## Add(T, T)

Adds a new key-value pair.

```csharp
public void Add(TKey key, TValue item)
```

### Parameters

**** (T): The key to add.**** (T): The value to add.

### Remarks

If a key-value pair with this key is already present, an additional separate key-value pair is added.

## Add(T, T, int)

Adds a new key-value pair.

```csharp
public void Add(TKey key, TValue item, int threadIndexOverride)
```

### Parameters

**** (T): The key to add.**** (T): The value to add.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): The thread index which must be set by a field from a job struct with the NativeSetThreadIndexAttribute attribute.

### Remarks

If a key-value pair with this key is already present, an additional separate key-value pair is added.
