<PackageReference Include="System.Runtime" Version="4.0.20-beta-22231" />

Type

public abstract class Type
public static readonly Type[] EmptyTypes

public static readonly object Missing

public abstract string AssemblyQualifiedName { get; }

public abstract Type DeclaringType { get; }

public abstract string FullName { get; }

public abstract int GenericParameterPosition { get; }

public abstract Type[] GenericTypeArguments { get; }

public bool HasElementType { get; }

public bool IsArray { get; }

public bool IsByRef { get; }

public abstract bool IsConstructedGenericType { get; }

public abstract bool IsGenericParameter { get; }

public bool IsNested { get; }

public bool IsPointer { get; }

public abstract string Name { get; }

public abstract string Namespace { get; }

public virtual RuntimeTypeHandle TypeHandle { get; }

public static Type GetType(string typeName)

public static Type GetType(string typeName, bool throwOnError)

public static Type GetType(string typeName, bool throwOnError, bool ignoreCase)

public bool Equals(Type o)

public abstract int GetArrayRank()

public abstract Type GetElementType()

public abstract Type GetGenericTypeDefinition()

public abstract Type MakeArrayType()

public abstract Type MakeArrayType(int rank)

public abstract Type MakeByRefType()

public abstract Type MakeGenericType(Type[] typeArguments)

public abstract Type MakePointerType()