コード例 #1
0
 private PrintRuleDictionary(PrintRuleDictionary other)
 {
     foreach (var kv in other.termTranslations)
     {
         termTranslations[kv.Key] = new List <PrintRule>(kv.Value);
     }
 }
コード例 #2
0
        public PrintRuleDictionary clone()
        {
            var dict = new PrintRuleDictionary(this);

            return(dict);
        }