# SharedData

> The shared key data for the collection this table belongs to.

## Definition

* **Type:** Property
* **Namespace:** [Unity.Localization](/engine/6000.7/script-reference/unity/localization.md)
* **Assembly:** UnityEngine.LocalizationRuntimeModule

```csharp
public SharedTableData SharedData { get; set; }
```

### Remarks

Every locale table in a collection points at the same [SharedTableData](/engine/6000.7/script-reference/unity/localization/sharedtabledata.md), which maps key text to the stable ids used by the entries here. Lookups by key text (for example [ResourceTable.GetEntry](/engine/6000.7/script-reference/unity/localization/resourcetable/getentry.md)) and [ResourceTable.AddStringEntry](/engine/6000.7/script-reference/unity/localization/resourcetable/addstringentry.md) resolve through it, so assign it before those calls resolve keys.
