많이 쓰지는 않지만 현재 사용중인 Dictionary가 key, value 타입을 모를 경우 GetType으로 가져오는 방법
Dictionary<string, string> dicValue = new Dictionary<string, string>();
Type[] arguments = dicValue.GetType().GetGenericArguments();
Type keyType = arguments[0];
Type valueType = arguments[1];
'Development > C#' 카테고리의 다른 글
[C#] 엑셀(Excel) 개행문자(엔터, 줄바꿈) 제거 (0) | 2022.10.02 |
---|---|
Visual Studio 에서 Ctrl + 마우스 클릭시 정의로 이동 (0) | 2022.07.26 |
'MySqlParameterCollection.Add(string, object)'은(는) 사용되지 않습니다. (0) | 2021.12.21 |
비주얼 스튜디오(Visual Studio) 2017 2019 Setup 프로젝트 추가하기 (0) | 2021.03.20 |
C# DataTable Foreach로 DataRow 삭제하기 (0) | 2021.03.11 |