コード例 #1
0
ファイル: CommandCol.cs プロジェクト: bclnet/PowerPointTrans
 void IPointCommand.Read(BinaryReader r)
 {
     Func = PointSerDes.DecodeFunc <IPointContext, Collection <string>, object, CommandRtn>(r);
     Cmds = PointSerDes.DecodeCommands(r);
 }
コード例 #2
0
 void IPointCommand.Read(BinaryReader r) => Cmds = PointSerDes.DecodeCommands(r);
コード例 #3
0
 void IPointCommand.Read(BinaryReader r)
 {
     When = (When)r.ReadByte();
     Func = PointSerDes.DecodeFunc <IPointContext, Collection <string>, CommandRtn>(r);
     Cmds = PointSerDes.DecodeCommands(r);
 }