예제 #1
0
 public GtfsDistributedRecord(GtfsRecord baseRec, int current)
     : base(baseRec)
 {
     if (current > 9)
     {
         throw new ArgumentOutOfRangeException();
     }
     this.current = current;
 }
예제 #2
0
 public GtfsRecord(GtfsRecord other)
 {
     this.header      = other.header;
     this.currentLine = other.currentLine;
 }