Inheritance: Copyable
示例#1
0
 public Settings(Settings other)
 {
     ApartmentState = other.ApartmentState;
     appConfigFile = other.appConfigFile;
     Behavior = other.Behavior;
     CodePage = other.CodePage;
     InputFolder = other.InputFolder;
     OutputFolder = other.OutputFolder;
     Runner = other.Runner;
     XmlOutput = other.XmlOutput;
 }
示例#2
0
 public Settings(Settings other) {
     ApartmentState = other.ApartmentState;
     Behavior = other.Behavior;
     CodePage = other.CodePage;
     InputFolder = other.InputFolder;
     OutputFolder = other.OutputFolder;
     Runner = other.Runner;
     XmlOutput = other.XmlOutput;
     DryRun = other.DryRun;
     TagList = other.TagList;
 }