| Parameter | Description |
|---|---|
| sharedData | The shared table data to resolve the key against. |
string The resolved key text, or null when the reference cannot be resolved.
Resolves this reference to a key name using the given shared table data.
When the reference already holds key text, that text is returned directly. When it holds a key id, the name is looked
up in sharedData. Returns null when the reference is empty, or when the id is not present in
sharedData.
<para>Resolve an entry reference to its human-readable key text.</para>
using Unity.Localization;
namespace Unity.Localization.Samples { public class TableEntryReferenceResolveKeyNameExample { public string Run(TableEntryReference entryReference, SharedTableData sharedData) => entryReference.ResolveKeyName(sharedData); } }