📜  c# 在字典中查找 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:08.492000             🧑  作者: Mango

代码示例1
if (_tags.TryGetValue(tag, out string myValue))
{
    // use myValue;
}
// use myValue, still in scope, null if not found