System.Nullable.GetUnderlyingType 方法

方法描述

返回指定可以为 null 的类型的基础类型参数。

语法定义(C# System.Nullable.GetUnderlyingType 方法 的用法)

public static Type GetUnderlyingType(
	Type nullableType
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
nullableType System-Type 一个 Type 对象,描述关闭的泛型可以为 null 的类型。
返回值 System.Type 如果 nullableType 参数为关闭的泛型可以为 null 的类型,则为 nullableType 参数的类型变量;否则为 null。

提示和注释

泛型类型定义是包含一个类型参数列表的类型声明(如 Nullable),该类型参数列表声明一个或多个类型参数。 封闭式泛型类型是为类型参数指定特定类型的类型声明。

例如,如果 nullableType 参数的类型为 Nullable(在 C# 中,在 Visual Basic 中为 Nullable(Of Int32)),则返回值的类型为 Int32(即封闭式泛型类型的类型参数)。

System.Nullable.GetUnderlyingType 方法例子

该代码示例使用 GetUnderlyingType 方法来显示返回值的类型参数。

// This code example demonstrates the 
// Nullable.GetUnderlyingType() method.

using System;
using System.Reflection;

class Sample 
{
// Declare a type named Example. 
// The MyMethod member of Example returns a Nullable of Int32.

    public class Example
    {
        public int? MyMethod() 
        {
        return 0;
        }
    }

/* 
   Use reflection to obtain a Type object for the Example type.
   Use the Type object to obtain a MethodInfo object for the MyMethod method.
   Use the MethodInfo object to obtain the type of the return value of 
     MyMethod, which is Nullable of Int32.
   Use the GetUnderlyingType method to obtain the type argument of the 
     return value type, which is Int32.
*/   
    public static void Main() 
    {
        Type t = typeof(Example);
        MethodInfo mi = t.GetMethod("MyMethod");
        Type retval = mi.ReturnType;
        Console.WriteLine("Return value type ... {0}", retval);
        Type answer = Nullable.GetUnderlyingType(retval);
        Console.WriteLine("Underlying type ..... {0}", answer);
    }
}
/*
This code example produces the following results:

Return value type ... System.Nullable`1[System.Int32]
Underlying type ..... System.Int32

*/

异常

异常 异常描述
ArgumentNullException nullableType 为 null。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。