Esempio n. 1
0
 protected override bool OnLine(string[] Fields)
 {
     PetMoodTipsTable.RowData rowData = new PetMoodTipsTable.RowData();
     if (!base.Parse(Fields[this.ColMap[0]], ref rowData.level))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[1]], ref rowData.value))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[2]], ref rowData.tip))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[3]], ref rowData.icon))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[4]], ref rowData.comprehend))
     {
         return(false);
     }
     if (!base.Parse <int>(Fields[this.ColMap[5]], ref rowData.hourchange, CVSReader.intParse, "2I"))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[6]], ref rowData.tips))
     {
         return(false);
     }
     this.Table.Add(rowData);
     return(true);
 }
Esempio n. 2
0
 protected override void ReadLine(BinaryReader reader)
 {
     PetMoodTipsTable.RowData rowData = new PetMoodTipsTable.RowData();
     base.Read <uint>(reader, ref rowData.level, CVSReader.uintParse);
     this.columnno = 0;
     base.Read <int>(reader, ref rowData.value, CVSReader.intParse);
     this.columnno = 1;
     base.Read <string>(reader, ref rowData.tip, CVSReader.stringParse);
     this.columnno = 2;
     base.Read <string>(reader, ref rowData.icon, CVSReader.stringParse);
     this.columnno = 3;
     base.Read <uint>(reader, ref rowData.comprehend, CVSReader.uintParse);
     this.columnno = 4;
     base.ReadSeq <int>(reader, ref rowData.hourchange, CVSReader.intParse);
     this.columnno = 5;
     base.Read <string>(reader, ref rowData.tips, CVSReader.stringParse);
     this.columnno = 6;
     this.Table.Add(rowData);
     this.columnno = -1;
 }