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