Notice
Recent Posts
Recent Comments
Link
투케이2K
31. (C#/NET) [Mac Os] [문법] ArrayList 컬렉션 생성 및 Contains 사용해 특정 요소 포함 여부 확인 - True , False 본문
C샵 (NET)
31. (C#/NET) [Mac Os] [문법] ArrayList 컬렉션 생성 및 Contains 사용해 특정 요소 포함 여부 확인 - True , False
투케이2K 2024. 3. 15. 08:43[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections; // [ArrayList 컬렉션 사용]
namespace testProject {
class Program {
static void Main(string[] args){
/*
-------------------------------------------
[요약 설명]
-------------------------------------------
1. ArrayList : 필요에 따라 크기가 동적으로 증가하는 배열입니다 (컬렉션)
-------------------------------------------
2. ArrayList 를 사용하기 위해서는 using System.Collections; 를 선언해 줘야합니다
-------------------------------------------
3. Add : 리스트에 요소를 삽입할 때 사용 합니다
-------------------------------------------
4. Contains : 특정 요소가 포함 되어 있는지 확인합니다 - true , false
-------------------------------------------
*/
// [변수 선언]
ArrayList arrayList = new ArrayList();
// [Add 사용해 배열 데이터 삽입]
arrayList.Add("Hello");
arrayList.Add("Twok");
arrayList.Add("World");
// [Contains 사용해 특정 요소 포함 여부 확인]
bool twokContains = false;
if (arrayList.Contains("Twok") == true){
twokContains = true;
}
bool hiContains = false;
if (arrayList.Contains("Hi") == true){
hiContains = true;
}
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"twokContains : {twokContains}");
Console.WriteLine($"hiContains : {hiContains}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
// [배열 요소 출력 print]
public static string listValue(ArrayList myList) {
string returnData = "[";
if (myList != null){
for (int i = 0; i < myList.Count; i++) {
if (i != myList.Count-1){
returnData += myList[i] + ", ";
}
else {
returnData += myList[i];
}
}
}
returnData += "]";
return returnData;
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments