Sharpsvn diff method is not working?

As itowlson already answered in his comment, SharpSvn writes the diff to the stream. So when the function returns you are right behind the written diff.

As itowlson already answered in his comment, SharpSvn writes the diff to the stream. So when the function returns you are right behind the written diff. And .ReadToEnd() reads everything from the current position to the end, which is most likely nothing.

Using a stream. Position = 0; (or Seek) before creating the StreamReaders should help. This will give you a unified diff.

If you really need both versions of the file (to perform the diff yourself), you can use SvnClient.Write() of the separate targets.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions