コード例 #1
0
 public CountDsvRecord(DsvRecordHandler next = null) : base(next)
 {
     count = 0;
 }
コード例 #2
0
 public TagDsvRecord(string _tag, DsvRecordHandler next = null) : base(next)
 {
     tag = _tag;
 }
コード例 #3
0
 public DsvRecordHandler(DsvRecordHandler _next = null)
 {
     next = _next;
 }
コード例 #4
0
 public PrintDsvRecord(DsvRecordHandler next = null) : base(next)
 {
 }
コード例 #5
0
 public ConvertDsvLineToDsvRecord(DsvLineConfig _config, DsvRecordHandler _next) : base()
 {
     config = _config;
     next_  = _next;
 }