void IExcelCommand.Read(BinaryReader r) { Headers = r.ReadByte(); Group = ExcelSerDes.DecodeFunc <IExcelContext, IEnumerable <Collection <string> >, IEnumerable <IGrouping <T, Collection <string> > > >(r); Cmds = ExcelSerDes.DecodeFunc <IExcelContext, object, IExcelCommand[]>(r); _set = new List <Collection <string> >(); }
void IExcelCommand.Read(BinaryReader r) { Func = ExcelSerDes.DecodeFunc<IExcelContext, Collection<string>, object, CommandRtn>(r); Cmds = ExcelSerDes.DecodeCommands(r); }
void IExcelCommand.Read(BinaryReader r) { When = (When)r.ReadByte(); Func = ExcelSerDes.DecodeFunc <IExcelContext, Collection <string>, CommandRtn>(r); Cmds = ExcelSerDes.DecodeCommands(r); }
void IExcelCommand.Read(BinaryReader r) { Func = ExcelSerDes.DecodeFunc <IExcelContext, Collection <string>, object, bool>(r); ValueKind = (CellValueKind)r.ReadInt32(); ValueFormat = ExcelSerDes.DecodeFunc <IExcelContext, string>(r); }