Search notes:

System.Reflection.Assembly - LoadWithPartialName() method

The static method LoadWithPartialName, found in the System.Reflection.Assembly class, loads an assembly, using a partial name, from

Using the PowerShell cmdLet add-type to load an assembly

Most of the time, the following two PowerShell statements are equivalent i
add-type -assemblyName Windows.Forms
[System.Reflection.Assembly]::LoadWithPartialName("Windows.Forms")

Index