| Parameter | Description |
|---|---|
| table | The table collection to resolve the entry from. |
| entry | The entry within the table collection to resolve. |
Sets the table and entry references together so the reference refreshes only once.
Prefer this over assigning LocalizedReference.TableReference and
LocalizedEntry<T0>.TableEntryReference separately, because it applies both values with a single
refresh of any live listeners.
<para>Point a reference at an entry in one call.</para>
using Unity.Localization;
namespace Unity.Localization.Samples { public class LocalizedEntrySetReferenceExample { public void SetReference() { var reference = new LocalizedString(); reference.SetReference("My Strings", "HELLO"); } } }