| 123456789101112 | 
							-         private Dictionary<string, {CfgName}[]> _cfgsGroupDic = new Dictionary<string, {CfgName}[]>();
 
-         public {CfgName}[] GetCfgs({params})
 
-         {
 
-             var colNames = new string[] { {colNames}};
 
-             var colValues = new string[] { {colValues} };
 
-             return ConfigUtil.GetCfgs<{CfgName}>("{CfgArrayName}", colNames, colValues, _cfgsGroupDic, HandleCfgInGroup);
 
-         }
 
-         
 
-         private void HandleCfgInGroup({CfgName} cfg)
 
-         {
 
-             _cfgsDic[cfg.combinedKey] = cfg;
 
-         }
 
 
  |