■ Type 클래스에서 Nullable 타입을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
using System; #region 널 가능 타입 구하기 - GetNullableType(sourceType) /// <summary> /// 널 가능 타입 구하기 /// </summary> /// <param name="sourceType">소스 타입</param> /// <returns>널 가능 타입</returns> public Type GetNullableType(Type sourceType) { Type targetType = sourceType; if(sourceType.IsGenericType && sourceType.GetGenericTypeDefinition().Equals(typeof(Nullable<>))) { targetType = Nullable.GetUnderlyingType(sourceType); } return targetType; } #endregion |