# Remove

> Removes a key and its associated value(s).

## Definition

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

## Remove(T)

Removes a key and its associated value(s).

```csharp
public int Remove(TKey key)
```

### Parameters

**** (T): The key to remove.

### Returns

| Type                                                       | Description                                                                   |
| ---------------------------------------------------------- | ----------------------------------------------------------------------------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | The number of removed key-value pairs. If the key was not present, returns 0. |

## Remove(NativeParallelMultiHashMapIterator\<T>)

Removes a single key-value pair.

```csharp
public void Remove(NativeParallelMultiHashMapIterator<TKey> it)
```

### Parameters

**** (\[NativeParallelMultiHashMapIterator\<T>]\(/engine/6000.7/script-reference/unity/collections/nativeparallelmultihashmapiterator1)): An iterator representing the key-value pair to remove.
