P4Command cm = new P4Command(ps, "sync", true, String.Format("{0}/...", deppath));
P4CommandResult results = cm.Run();
if (results != null)
Console.WriteLine("no problem");
TaggedObjectList listfiledown = new TaggedObjectList();
listfiledown = (results.TaggedOutput);
foreach (TaggedObject obj in listfiledown)
{
Console.WriteLine("no problem");
}
我必须从仓库下载一个文件到我的工作区,所以如果我运行命令 taggedoutput 为 null ,有什么解决方案吗?
'你调用的对象是空的'