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