■ Nullable 타입 여부를 구하는 방법을 보여준다.
▶ Nullable 타입 여부 구하기 예제 (C#)
1 2 3 4 5 6 7 8 9 |
using System; int? a = 5; int b = 10; Console.WriteLine(TypeManager.IsNullable(a)); Console.WriteLine(TypeManager.IsNullable(b)); |
▶ 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 29 30 31 32 33 34 35 36 37 |
/// <summary> /// 타입 관리자 /// </summary> public static class TypeManager { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region Nullable 타입 여부 구하기 - IsNullable<TSource>(sourceObject) /// <summary> /// Nullable 타입 여부 구하기 /// </summary> /// <typeparam name="TSource">소스 타입</typeparam> /// <param name="sourceObject">소스 오브젝트</param> /// <returns>Nullable 타입 여부</returns> public static bool IsNullable<TSource>(TSource sourceObject) { return false; } /// <summary> /// Nullable 타입 여부 구하기 /// </summary> /// <typeparam name="TSource">소스 타입</typeparam> /// <param name="sourceObject">소스 오브젝트</param> /// <returns>Nullable 타입 여부</returns> public static bool IsNullable<TSource>(TSource? sourceObject) where TSource : struct { return true; } #endregion } |