string A human-readable description of the reference.
Returns a readable string describing this reference.
Formats an id reference as "Id:" followed by the id, a name reference as the key text itself, and an empty reference as
<none>. Intended for debugging and logging.
<para>Log the entry reference for debugging.</para>
using Unity.Localization; using UnityEngine;
namespace Unity.Localization.Samples { public class TableEntryReferenceToStringExample { public void Run(TableEntryReference entryReference) { Debug.Log(entryReference.ToString()); } } }