标签: c# powershell
我有10个.dll必须加载,是否可以使用powershell?同样的小片段非常感谢
答案 0 :(得分:3)
我认为你可以通过以下方式加载它们,
$dlls = (Get-ChildItem -path "Path to Folder containing .dlls").fullname foreach ($dll in $dlls) { Add-Type -Path $dll }