728x90
반응형
List<string> 두 개를 List 안에 내용이 같은지 확인하는 방법
대신 순서가 같아야함
private void Form1_Load(object sender, EventArgs e)
{
List<string> a = new List<string>();
a.Add("가");
a.Add("나");
a.Add("다");
List<string> b = new List<string>();
b.Add("나");
b.Add("가");
b.Add("다");
bool result = a.SequenceEqual(b);
MessageBox.Show(result.ToString());
}
private void Form1_Load(object sender, EventArgs e)
{
List<string> a = new List<string>();
a.Add("가");
a.Add("나");
a.Add("다");
List<string> b = new List<string>();
b.Add("나");
b.Add("가");
b.Add("다");
a.Sort();
b.Sort();
bool result = a.SequenceEqual(b);
MessageBox.Show(result.ToString());
}
728x90
반응형
'c# > 기타' 카테고리의 다른 글
[c#] IP, 사용자 NAME 가져오기 (0) | 2022.05.27 |
---|---|
[c#] winform 윈폼 열린폼은 맨위로 , 중복 방지 open form (0) | 2022.05.02 |
[c#] xml document / XML 읽기 쓰기 (0) | 2022.05.02 |
[c#] 시간 측정 stopwatch (0) | 2022.03.18 |
[c#] List<string> 특정 단어가 들어가면 삭제 (0) | 2022.01.21 |