■ 타입(Type) 헬퍼 클래스를 사용하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
using System; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { Console.WriteLine(TypeHelper.IsSameType(20, typeof(int))); Console.WriteLine(TypeHelper.IsPrimitiveType(typeof(int?))); Console.WriteLine(TypeHelper.IsNumericType(typeof(int?))); Console.WriteLine(TypeHelper.IsNullableType(typeof(int?))); } #endregion } } |
▶ TypeHelper.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; namespace TestProject { /// <summary> /// 타입 헬퍼 /// </summary> public static class TypeHelper { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region Field /// <summary> /// 문자열 타입 /// </summary> public static Type StringType = typeof(string); /// <summary> /// Type 타입 /// </summary> public static Type TypeType = typeof(Type); #endregion //////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 기본 타입 세트 /// </summary> private static HashSet<Type> _primitiveTypeSet; /// <summary> /// 숫자 타입 세트 /// </summary> private static HashSet<Type> _numericTypeSet; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - TypeHelper() /// <summary> /// 생성자 /// </summary> static TypeHelper() { _primitiveTypeSet = new HashSet<Type>() { typeof(bool), typeof(string), typeof(DateTime), typeof(Type) }; _numericTypeSet = new HashSet<Type> { typeof(byte), typeof(sbyte), typeof(int), typeof(uint), typeof(short), typeof(ushort), typeof(long), typeof(ulong), typeof(float), typeof(double), typeof(decimal) }; #region NULLABLE 기본 타입을 추가한다. List<Type> nullablePrimitiveTypeList = new List<Type>(); foreach(Type primitiveType in _primitiveTypeSet) { Type nullablePrimitiveType = GetNullableType(primitiveType); if(nullablePrimitiveType != primitiveType) { nullablePrimitiveTypeList.Add(nullablePrimitiveType); } } foreach(Type nullablePrimitiveType in nullablePrimitiveTypeList) { _primitiveTypeSet.Add(nullablePrimitiveType); } #endregion #region NULLABLE 숫자 타입을 추가한다. List<Type> nullableNumericTypeList = new List<Type>(); foreach(Type numericType in _numericTypeSet) { Type nullableNumericType = GetNullableType(numericType); if(nullableNumericType != numericType) { nullableNumericTypeList.Add(nullableNumericType); } } foreach(Type nullableNumericType in nullableNumericTypeList) { _numericTypeSet.Add(nullableNumericType); } #endregion foreach(Type numericType in _numericTypeSet) { _primitiveTypeSet.Add(numericType); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 동일 타입 여부 구하기 - IsSameType(value, type) /// <summary> /// 동일 타입 여부 구하기 /// </summary> /// <param name="value">값</param> /// <param name="type">타입</param> /// <returns>동일 타입 여부</returns> public static bool IsSameType(object value, Type type) { if((value is Type && type == TypeType) || value.GetType() == type) { return true; } else { return false; } } #endregion #region 기본 타입 여부 구하기 - IsPrimitiveType(type) /// <summary> /// 기본 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>기본 타입 여부</returns> public static bool IsPrimitiveType(Type type) { return _primitiveTypeSet.Contains(type); } #endregion #region 숫자 타입 여부 구하기 - IsNumericType(type) /// <summary> /// 숫자 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>숫자 타입 여부</returns> public static bool IsNumericType(Type type) { return _numericTypeSet.Contains(type); } #endregion #region NULLABLE 타입 여부 구하기 - IsNullableType(type) /// <summary> /// NULLABLE 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>NULLABLE 타입 여부</returns> public static bool IsNullableType(Type type) { if(type == null) { return false; } if(type.IsValueType == false) { return true; } return type.IsGenericType == true && type.GetGenericTypeDefinition() == typeof(Nullable<>); } #endregion #region NULLABLE 타입 구하기 - GetNullableType(type) /// <summary> /// NULLABLE 타입 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>NULLABLE 타입</returns> public static Type GetNullableType(Type type) { if(type == null) { return null; } if(IsNullableType(type) == false) { return typeof(Nullable<>).MakeGenericType(type); } else { return type; } } #endregion #region NULLABLE 내부 타입 구하기 - GetNullableUnderlyingType(type) /// <summary> /// NULLABLE 내부 타입 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>NULLABLE 내부 타입</returns> public static Type GetNullableUnderlyingType(Type type) { if ( type == null || type == typeof(object) || type.BaseType == typeof(object) || type == typeof(Type) || IsNullableType(type) == false ) { return type; } return Nullable.GetUnderlyingType(type); } #endregion #region 디폴트 값 구하기 - GetDefaultValue(type) /// <summary> /// 디폴트 값 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>디폴트 값</returns> public static object GetDefaultValue(Type type) { if(type?.IsValueType == true) { return Activator.CreateInstance(type); } else { return null; } } #endregion #region 리스트 항목 타입 구하기 - GetListItemType(type, listType, itemType) /// <summary> /// 리스트 항목 타입 구하기 /// </summary> /// <param name="type">타입</param> /// <param name="listType">리스트 타입</param> /// <param name="itemType">항목 타입</param> public static void GetListItemType(Type type, ref Type listType, ref Type itemType) { listType = null; itemType = null; if(IsListType(type) == true) { listType = type; itemType = type.GetGenericArguments().FirstOrDefault(); } else { listType = null; itemType = type; } } #endregion #region 리스트 타입 여부 구하기 - IsListType(type) /// <summary> /// 리스트 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>리스트 타입 여부</returns> public static bool IsListType(Type type) { if(type == null) { return false; } if ( typeof(IList).IsAssignableFrom(type) == true || type.GetInterfaces().Any ( i => i.IsGenericType == true && i.GetGenericTypeDefinition() == typeof(ICollection<>) ) ) { return true; } else { return false; } } #endregion #region 데이터 테이블 여부 구하기 - IsDataTableType(type) /// <summary> /// 데이터 테이블 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>데이터 테이블 여부</returns> public static bool IsDataTableType(Type type) { if(type == typeof(DataTable)) { return true; } else { return false; } } #endregion #region 데이터 리더 타입 여부 구하기 - IsDataReaderType(type) /// <summary> /// 데이터 리더 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>데이터 리더 타입 여부</returns> public static bool IsDataReaderType(Type type) { if(typeof(IDataReader).IsAssignableFrom(type) == true) { return true; } else { return false; } } #endregion #region 타입 배열 구하기 - GetTypeArray(assembly, namespaceName) /// <summary> /// 타입 배열 구하기 /// </summary> /// <param name="assembly">어셈블리</param> /// <param name="namespaceName">네임스페이스명</param> /// <returns>타입 배열</returns> public static Type[] GetTypeArray(Assembly assembly, string namespaceName) { return assembly.GetTypes().Where ( t => string.Equals(t.Namespace, namespaceName, StringComparison.Ordinal) ).ToArray(); } #endregion } } |