Example #1
0
File: Log.cs Project: dnzn/Senko
 static void Add(this List <Record> records, Record record, MaxLengths maxLengths)
 {
     maxLengths.Parse(record);
     records.Add(record);
 }
Example #2
0
File: Log.cs Project: dnzn/Senko
 public LogFile(List <Record> records, MaxLengths maxLength)
 {
     Records   = records;
     MaxLength = maxLength;
 }