예제 #1
0
 public GetterTextFile(IGetter <string> filepath, Behaviour modifier = Behaviour.Exception)
 {
     GPTH        = filepath.NotNull();
     this.modify = this.get_modification(modifier);
 }
예제 #2
0
파일: Input.cs 프로젝트: tefarov/teo_core
 public enumerator(IGetter <string[]> source)
 {
     SRC = source.NotNull();
     this.Reset();
 }
예제 #3
0
파일: Run.cs 프로젝트: tefarov/teo_core
 public bch_file(Run parent, IGetter <string> source)
 {
     PRT = parent.NotNull();
     SRC = source.NotNull();
 }
예제 #4
0
 public CmdExecute(IGetter <string> filepath)
 {
     GPTH = filepath.NotNull();
 }
예제 #5
0
 public CmdTransfer(IGetter <T> source, ISetter <T> destination)
 {
     SRC = source.NotNull();
     DST = destination.NotNull();
 }
예제 #6
0
 public GetterAskConsole(IGetter <string> question)
 {
     GQST = question.NotNull();
 }
예제 #7
0
 public GetterFiltered(IGetter <IEnumerable <T> > source)
 {
     GITM = source.NotNull();
 }
예제 #8
0
 public GetterEnumerable(IGetter <IEnumerable <T> > source)
 {
     GITM = source.NotNull("Datasource unset");
 }
예제 #9
0
 public GetterConverter(Func <TInput, T> converter, IGetter <TInput> source)
     : this(converter)
 {
     GSRC = source.NotNull("Source unset");
 }