Exemple #1
0
 public LineNumber(int number)
 {
     Value = Validation.IntIsNatural(number);
 }
Exemple #2
0
 public IntCount(int startingCount)
 {
     Value = Validation.IntIsNatural(startingCount);
 }
Exemple #3
0
 public LogLine(string line)
 {
     Value = Validation.NotNull(line);
 }
Exemple #4
0
 public CodeLine(string code)
 {
     Value = Validation.NotNull(code);
 }
Exemple #5
0
 public FileName(string name)
 {
     Value = Validation.FileName(name);
 }
Exemple #6
0
 public ExistingFileName(string name)
 {
     Value = Validation.FileExists(name);
 }