Getting HttpResponse Message contentLength as:
var contentLength = response.Content.Headers.ContentLength;
Console.WriteLine(contentLength);
Getting XML File Length as:
FileInfo f = new FileInfo(fileName);
long filesize = f.Length;
Now when printing both the size, it's giving me one as 3970 and other as 3968. I want to compare both the size but because of this difference, I am failing to do it. Any Help?