C#1 C# ContainsKey vs TryGetValue 개요유니티 시스템 프로그래밍 Pt.1 스터디 2주차를 진행하던 중, 더 최적화할 수 있을 것 같은 코드를 발견하여 이에 대한 의견을 제시하였다 코드는 다음과 같다./// /// 지정된 BGM을 재생합니다./// /// 재생할 BGM의 열거형 값.public void PlayBGM(EBGM bgm){ if (_currentBGMSource) { _currentBGMSource.Stop(); _currentBGMSource = null; } if (!_bgmDic.ContainsKey(bgm)) { Debug.LogError($"Invalid clip name. {bgm}"); return; } _currentBGMSo.. 2024. 9. 17. 이전 1 다음