Notice
Recent Posts
Recent Comments
Link
투케이2K
39. (C#/NET) [Mac Os] [문법] Dictionary 딕셔너리 사용해 key , value 형식 객체 생성 및 ContainsKey 특정 key 포함 확인 본문
C샵 (NET)
39. (C#/NET) [Mac Os] [문법] Dictionary 딕셔너리 사용해 key , value 형식 객체 생성 및 ContainsKey 특정 key 포함 확인
투케이2K 2024. 3. 15. 11:10[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
namespace testProject {
class Program {
static void Main(string[] args){
/*
-------------------------------------------
[요약 설명]
-------------------------------------------
1. Dictionary : C# 에서 KEY 와 VALUE를 사용해서 자료를 저장할 수 있습니다
-------------------------------------------
2. Dictionary 을 Generic 타입으로 Key 와 Value 지정 시 데이터 타입을 명시해야합니다
-------------------------------------------
*/
// [객체 생성]
Dictionary<string, string> dictionary = new Dictionary<string, string>();
// [Add 사용해 데이터 삽입]
dictionary.Add("KEY_1", "hello");
// [ContainsKey 사용해 특정 key 포함 확인]
bool key_1_contains = false;
if (dictionary.ContainsKey("KEY_1") == true){
key_1_contains = true;
}
bool key_2_contains = false;
if (dictionary.ContainsKey("KEY_2") == true){
key_2_contains = true;
}
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"key_1_contains : {key_1_contains}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"key_2_contains : {key_2_contains}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments