public static void Main()
var firstText = "test me \n new line \n another new line uniq for first text";
var secondText = "test me \n new line \n uniq line for second text";
string[] array1 = firstText.Split('\n');
string[] array2 = secondText.Split('\n');
var result = array1.Except(array2).Concat(array2.Except(array1));
result.ToList().ForEach(i => Console.WriteLine(i.ToString()));