Compare two PDF and show dissimilarities in Output

yah thats possible
–if that pdf is read on whole or we are getting any specific details we can compare them
–like if we are obtaining specific details from pdf using get text (if we are able to select the terms as individual elements) or with screen scrapping option (if its a image)
or with anchor base activity and storing the output to a string variable
–we can compare those two string variables using a if condition like this
in_value1.ToString.Equals(in_value2)
if true will go to THEN part where we can include any activity we want

OR

if we are reading the whole pdf either with read pdf or read pdf ocr activity we will be getting a string output variable
–say in_str1 for first pdf and in_str2 for second pdf
–then use a assign activity like this
out_str1_array = in_str1.Split(Environment.Newline.ToArray())
and another assign activity like this
out_str2_array = in_str2.Split(Environment.Newline.ToArray())
where both out_str1_array and out_Str2_array as string array variable

–now use a for each loop and pass the above variable out_str1_array as input and change the type argument as string in the property panel and change the variable from item to item1
–inside use another for each loop and mention the variable out_str2_array as input and change the type argument as string in the property panel and change the variable from item to item2
–inside the inner loop use a if condition like this
item1.ToString.Equals(item2.ToString)
this will check each line of both pdf whether they are equal or not. and if equal wll go to THEN part where we can include a break activity so that once matched it wont loop again or will go to ELSE part

hope this would help you
kindly correct me if i m wrong and let know for any queries or clarification
Cheers @Rajnish