I need to read the head version (or last commit) version of a file.
with this approach i get the head version of my working copy,
string workingFolder = @"C:\trunk\Projects\XML\English.xml";
SvnWorkingCopyClient workingCopyClient = new SvnWorkingCopyClient();
SvnWorkingCopyVersion version;
workingCopyClient.GetVersion(workingFolder, out version);
MessageBox.Show(version.End.ToString());
But i what i want is to get the head version of my working copy of the file
Deeply appreciate for your time and help