0

I am working with a p4api.net application and I need to make use of perforce 'diff' command in it. I couldn't find a right approach to execute this command. I need a way to execute the command inside the application and get its result. Thanks in advance.

Ganesh Sittampalam
  • 28,821
  • 4
  • 79
  • 98
Subhanandh
  • 141
  • 1
  • 11

1 Answers1

1

Without knowing what you've tried so far, or what the specific problem is, the best we can do is point you to the P4API.NET documentation for the diff method.

Mark
  • 3,609
  • 1
  • 22
  • 33
  • I was trying to use P4Command class and then trying to execute diff command in it. Since I was using Repository class for connection, I used Repository type parameter along with other parameters in the P4Command constructor. But, while execution, a break happens showing me with a message to use P4Server parameter. – Subhanandh Nov 18 '13 at 04:18