FunctionAllGroupBlock.txt 267 B

1234567
  1. {cfgsGroupDicName}.TryGetValue({groupKey}, out var {list});
  2. if({list} == null)
  3. {
  4. {list} = new List<{CfgName}>();
  5. {cfgsGroupDicName}.Add({groupKey}, {list});
  6. }
  7. {list}.Add(cfg);