Esempio n. 1
0
 public ProtectionSettingsStack(ProtectionSettingsStack copy)
 {
     context = copy.context;
     stack   = new Stack <Tuple <ProtectionSettings, ProtectionSettingsInfo[]> >(copy.stack);
     parser  = copy.parser;
 }
Esempio n. 2
0
 public ProtectionSettingsStack(ConfuserContext context, Dictionary <string, Protection> protections)
 {
     this.context = context;
     stack        = new Stack <Tuple <ProtectionSettings, ProtectionSettingsInfo[]> >();
     parser       = new ObfAttrParser(protections);
 }