Search notes:

System.Reflection.Assembly - GetType()

$assembly = [System.Reflection.Assembly]::LoadFile('C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.8\System.Configuration.dll')
$type = $assembly.GetType('System.Configuration.ConfigurationBuilder')
$type | select *

Index