0

TaggedOutputl 如果我们将 bool 设置为 true,则命令 Diff2 不会给出假设的输出,taggedOutput但如果我们将其设置为 false,则结果会在文本上返回 TextOutput而没有问题,那么我该如何解决这个问题

编码:

P4Command command = new P4Command(ps, "diff2", false, new String[] { "-ds", depotpathleft, depotpathright });
Perforce.P4.Options op= new Options();
op.Add("-u","");
P4CommandResult result= command.Run(op);
TaggedObjectList list = (result.TaggedOutput);
4

1 回答 1

1

这是“diff2”命令的已知行为。您可以向 Perforce 技术支持提出此问题,以便他们可以在将来更改此行为时通知您。

目前,我认为您唯一的选择是使用未标记的输出运行命令。

于 2013-04-18T20:00:14.223 回答