在无法正常工作的类中加载.NET程序集(Add-Type和OOP powershell)

时间:2019-06-17 16:13:19

标签: powershell

我遇到了一个奇怪的问题...我无法加载以下系统dll:System.Security

这样做很完美:

Add-Type -AssemblyName System.Security
[System.Security.Cryptography.ProtectedData]

但是执行以下操作无效:

class classA {
    [Void] methodA() {
        Add-Type -AssemblyName System.Security
        [System.Security.Cryptography.ProtectedData]
    }
}

$classA = [classA]::methodA()

我在[System.Security.Cryptography.ProtectedData]上遇到了错误。

Type [System.Security.Cryptography.ProtectedData] not found

对这个问题有见识吗?

0 个答案:

没有答案