Inheritance: Copyable
コード例 #1
0
ファイル: Settings.cs プロジェクト: nhajratw/fitsharp
 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
ファイル: Settings.cs プロジェクト: GibSral/fitsharp
 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;
 }