添加类型
按装配名称,添加库
Add-Type -AssemblyName "System.Math"
或按文件路径:
Add-Type -Path "D:\Libs\CustomMath.dll"
要使用添加的类型:
[CustomMath.NameSpace]::Method(param1, $variableParam, [int]castMeAsIntParam)
按装配名称,添加库
Add-Type -AssemblyName "System.Math"
或按文件路径:
Add-Type -Path "D:\Libs\CustomMath.dll"
要使用添加的类型:
[CustomMath.NameSpace]::Method(param1, $variableParam, [int]castMeAsIntParam)