Table of Contents

Method GetTypeByName

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

GetTypeByName(string, bool)

Gets the Type object with the specified name searching it through all assemblies of the current domain.

public static Type? GetTypeByName(string name, bool reverse = false)

Parameters

name string

Name of the type in the same format as passed to GetType(string).

reverse bool

if true gives priority to most recently loaded types. Optional. Default is false.

Returns

Type