RuntimeReflectionExtensions.GetRuntimeMethods(Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索表示指定类型定义的所有方法的集合。
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<System::Reflection::MethodInfo ^> ^ GetRuntimeMethods(Type ^ type);
public static System.Collections.Generic.IEnumerable<System.Reflection.MethodInfo> GetRuntimeMethods (this Type type);
static member GetRuntimeMethods : Type -> seq<System.Reflection.MethodInfo>
<Extension()>
Public Function GetRuntimeMethods (type As Type) As IEnumerable(Of MethodInfo)
参数
- type
- Type
包含方法的类型。
返回
指定类型的方法集合。
例外
type
为 null
。
注解
此方法返回在指定类型上定义的所有方法,包括继承方法、非公共方法、实例方法和静态方法。