FunctionAllGroupBlock.txt 332 B

1234567891011
  1. _cfgsGroupDic.TryGetValue(cfg.combinedKey, out var list);
  2. if(list != null)
  3. {
  4. list.Clear();
  5. }
  6. else
  7. {
  8. list = new List<{CfgName}>();
  9. _cfgsGroupDic.Add(cfg.combinedKey, list);
  10. }
  11. list.Add(cfg);