■ 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 25 26 27 28 |
#region Nullable 타입 여부 구하기 - IsNullable(type) /// <summary> /// Nullable 타입 여부 구하기 /// </summary> /// <param name="type">타입</param> /// <returns>Nullable 타입 여부</returns> public bool IsNullable(Type type) { return !type.IsValueType || Nullable.GetUnderlyingType(type) != null; } #endregion #region Nullable 타입 여부 구하기 - IsNullable(propertyInfo) /// <summary> /// Nullable 타입 여부 구하기 /// </summary> /// <param name="propertyInfo">속성 정보</param> /// <returns>Nullable 타입 여부</returns> public bool IsNullable(PropertyInfo propertyInfo) { return IsNullable(propertyInfo.PropertyType); } #endregion |