GetTypeInfo() public static method

public static GetTypeInfo ( Type type ) : ITypeInfo
type System.Type
return ITypeInfo
コード例 #1
0
 public ITypeInfo GetElementType()
 {
     return(TypeFactory.GetTypeInfo(this._type.GetElementType()));
 }
コード例 #2
0
 public ITypeInfo EnumGetUnderlyingType()
 {
     return(TypeFactory.GetTypeInfo(Enum.GetUnderlyingType(this._type)));
 }