示例#1
0
 public GetterTextFile(IGetter <string> filepath, Behaviour modifier = Behaviour.Exception)
 {
     GPTH        = filepath.NotNull();
     this.modify = this.get_modification(modifier);
 }
示例#2
0
 public GetterTextFile(IFactory <string> filepath, string file, Behaviour modifier = Behaviour.Exception)
 {
     FPTH        = filepath.NotNull();
     Filepath    = file.NotNull("Filepath unset");
     this.modify = this.get_modification(modifier);
 }
示例#3
0
 public GetterTextFile(string filepath, Behaviour modifier = Behaviour.Exception)
 {
     Filepath    = filepath.NotNull("Filepath is empty");
     this.modify = this.get_modification(modifier);
 }