c# Dictionary的TryGetValue的用法

若是遇到要取不肯定的數據的時候不能這麼寫:spa myObject result = null; if (theDictionary.ContainsKey(id)) { result = theDictionary[id]; //What ever you gonna do next... } 得用TryGetValue,以減小一次沒必要要的查找:code myObject re
相關文章
相關標籤/搜索