Ejemplo n.º 1
0
 private PrintRuleDictionary(PrintRuleDictionary other)
 {
     foreach (var kv in other.termTranslations)
     {
         termTranslations[kv.Key] = new List <PrintRule>(kv.Value);
     }
 }
Ejemplo n.º 2
0
        public PrintRuleDictionary clone()
        {
            var dict = new PrintRuleDictionary(this);

            return(dict);
        }