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