Amazon.Util.Internal.TypeFactory.GetTypeInfo C# (CSharp) Метод

GetTypeInfo() публичный статический Метод

public static GetTypeInfo ( Type type ) : ITypeInfo
type System.Type
Результат 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