Be seen. Boost your question’s priority for more expert views and faster solutions
list_A.SequenceEqual(list_B);
List<string> list_A = new List<string>();
list_A.Add("Hello");
list_A.Add("I am <br><br> Isabell");
list_A.Add("Sincerely, <br><br>Isabell");
List<string> list_B = new List<string>();
list_B.Add("Hello");
list_B.Add("I am <br><br> Isabell");
list_B.Add("Sincerely, <br><br>Isabell");
MessageBox.Show((list_A.SequenceEqual(list_B)).ToString());
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
try check the 1st and 2nd results below
Open in new window