Notice
Recent Posts
Recent Comments
Link
투케이2K
30. (C#/NET) [Mac Os] [문법] ArrayList 컬렉션 생성 및 IndexOf 사용해 특정 요소가 저장 된 배열 인덱스 번지 값 확인 본문
C샵 (NET)
30. (C#/NET) [Mac Os] [문법] ArrayList 컬렉션 생성 및 IndexOf 사용해 특정 요소가 저장 된 배열 인덱스 번지 값 확인
투케이2K 2024. 3. 15. 08:37[개발 환경 설정]
개발 언어 : 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. IndexOf : 특정 요소가 지정 된 번지 값을 리턴 합니다
-------------------------------------------
*/
// [변수 선언]
ArrayList arrayList = new ArrayList();
// [Add 사용해 배열 데이터 삽입]
arrayList.Add("Hello");
arrayList.Add("Twok");
arrayList.Add("World");
// [IndexOf 사용해 특정 요소 번지 값 확인]
int idxOfTwok = arrayList.IndexOf("Twok");
int idxOfHi = arrayList.IndexOf("Hi");
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"idxOfTwok : {idxOfTwok}");
Console.WriteLine($"idxOfHi : {idxOfHi}");
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