내가 (.NET 3.0) 평등에 대한 문자열의 두 목록을 비교 어떻게, 하나의 요소 하나를 단계별로보다 기타 :평등을위한 두 개의 목록 <string> 비교
이 실패
// Expected result.
List<string> expected = new List<string>();
expected.Add("a");
expected.Add("b");
expected.Add("c");
// Actual result
actual = new List<string>();
actual.Add("a");
actual.Add("b");
actual.Add("c");
// Verdict
Assert.IsTrue(actual == expected);
가능한 중복 [어떤 두 개의 목록을 C#에서 평등 목록을 확인하는 가장 좋은 방법은 (http://stackoverflow.com/questions/876508/what-is-the-the-the-the-way-to-check-two-listt-lists-c-sharp의 동등 함) –
nawfal