Amazon.Util.Internal.TypeFactory.GetTypeInfo C# (CSharp) Méthode

GetTypeInfo() public static méthode

public static GetTypeInfo ( Type type ) : ITypeInfo
type System.Type
Résultat ITypeInfo
        public static ITypeInfo GetTypeInfo(Type type)
        {
            if (type == null)
                return null;

            return new TypeInfoWrapper(type);
        }

Usage Example

 public ITypeInfo GetElementType()
 {
     return(TypeFactory.GetTypeInfo(this._type.GetElementType()));
 }
All Usage Examples Of Amazon.Util.Internal.TypeFactory::GetTypeInfo
TypeFactory