PowerShell 添加类型

示例

通过程序集名称,添加库

Add-Type -AssemblyName "System.Math"

或按文件路径:

Add-Type -Path "D:\Libs\CustomMath.dll"

要使用添加的类型:

[CustomMath.NameSpace]::Method(param1, $variableParam, [int]castMeAsIntParam)