C# 이모저모 Get 으로 List를 불러오면 매번 다시 읽어오나? = Falsepublic class Test : MonoBehaviour{ public List List { get { Debug.Log("Get List"); return new() { 1, 2, 3, 4, 5 }; } } private void Start() { foreach (var item in List) { Debug.Log($"item is {item}"); } }} Dev Info/Unity (or C#) 2025.08.31