public void ShowDebug(string section) { StorageKey sk = m_serialized[section]; Debug.Log("--------------" + section + "---------------------"); if (sk == null) { Debug.Log("NULL"); } else { sk.ShowDebug(); } Debug.Log("-----------------------------------"); }